Can someone direct me to the code that generates t...
# prisma-whats-new
t
Can someone direct me to the code that generates the filter inputs for the schema?
g
t
The code that generates those GraphQL input types, yes
g
Do you want to get the data when you make a query like this ?
Copy code
query {
  postConnection(where: {
    title_contains: "biggest"
  }) {
    edges {
      node {
        id
        title
        published
      }
    }
  }
}
t
I am interested in the code (that was open sourced on Github) that generates the filter inputs in the schema, not how to use Graphcool or GraphQL 🙂
g
Ok, sorry my bad. I tought you needed some help with filters.
t
No worries, I had a feeling that would be an unexpected question
👍 1