Specifically what I'm curious about is an example ...
# prisma-whats-new
h
Specifically what I'm curious about is an example of how you would ask for a post where
A && (B || (C && D))
w
Hailwood, have you used graphcool before?
If you are asking how use complex boolean filtering in the graphql syntax, you can see on this page: https://www.graph.cool/docs/reference/graphql-api/query-api-nia9nushae/ Search for
Arbitrary combination of filters with AND and OR
If it is a question regarding prisma, then basically prisma provides you with the query api in that link. So you can still use that AND/OR query syntax
But generally you are going to place a graphql server like
graphcool-yoga
between a web client and the prisma server.