for example, this query: ``` query { posts(where...
# orm-help
a
for example, this query:
Copy code
query {
  posts(where: {
    comments_every: {
      text: "testing post comment reply"
    }
  }) {
    id
    text
    comments {
      text
    }
  }
}