-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Long running surveys don't work well #17863
Comments
related to (1): #16681 |
Option (3) that works better for some use cases: Whenever a user responds, we should add a It's a bit rougher than the above two, specially around the UX, (because the property needs to exist before we can target) but much faster & can unblock long running surveys for now. |
Related issue : #22099 I think both of these can be combined and the motive here is to give people the ability to repeat a survey and track survey responses on each of those "iterations". Here's what we need to do to solve this : Data model changes to the surveys table
Once we have the above properties, we can show the user an interface to set the frequency of the survey and how many times it should repeat. These two properties are nullable and we need to make our work backwards compatible to make existing survey responses function without issues to show NPS scores etc. UI changes.
posthog-js changes.
out of scope
|
Bug description
We’re not dealing well with long running surveys where the same survey can be shown to the same person again and again as they browse incognito / clear cookies / etc. etc..
For example, if you have a churn survey that targets on whether a user churned from product X property.
Two things that would help here I think:
Both would work, but (2) currently is too hard for end users to implement because we don't have #17392
The text was updated successfully, but these errors were encountered: