We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In such query
GroupEvents1(user_pseudo_id, events? List= custom_event_name) distinct :- Events(user_pseudo_id:, custom_event_name:, event_timestamp:);
I want to get events with order by event_timestamp still find no answer in document?
event_timestamp
It will be the same situation in Functional aggregation:
GroupEvents2(user_pseudo_id) List= custom_event_name :- Events(user_pseudo_id:, custom_event_name:, event_timestamp:);
The text was updated successfully, but these errors were encountered:
This is done with Array aggregate operator. I've updated tutorial to mention it.
Array
In your Functional example it would be like so:
GroupEvents2(user_pseudo_id) Array= event_timestamp -> custom_event_name :- Events(user_pseudo_id:, custom_event_name:, event_timestamp:);
Let me know if you have further questions.
Sorry, something went wrong.
Thanks.
No branches or pull requests
In such query
I want to get events with order by
event_timestamp
still find no answer in document?It will be the same situation in Functional aggregation:
The text was updated successfully, but these errors were encountered: