-
Notifications
You must be signed in to change notification settings - Fork 36
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
support for OR
operators
#279
Comments
following orens suggestion and looking here https://www.howtographql.com/react-apollo/7-filtering-searching-the-list-of-links/ I have tried:
{ name id Which gives me a syntax error. |
This comment is relevant and probably applies to our situation as well: graphql/graphql-js#585 (comment) |
while this query gives me no error,b ut ti just ignores the filter:
|
There is a possible workaround for this, for this specific history query. we could run this query:
Currently, this will not work, bc we may have Executed proposals that are not past their |
does using closingAt field https://github.com/daostack/subgraph/blob/master/src/domain/schema.graphql#L59 will do the work. ? |
yesss |
ín the alchemy history page we concatenate the results of these two queries:
The fact that these are two different queries makes sorting and paging very hard to implement, so we'd like to have one single query
The text was updated successfully, but these errors were encountered: