Błażej Witczak
Błażej Witczak

Reputation: 45

GraphQL some params in where query

How to create a query with some parameters in the part where of GraphQL query.

I have query with one parameter and I need to add some parameters to that query.

query{
  places(where:{longitude_gte:21.00}){
    latitude
    location
    name
    phoneNumber
  }
}

Upvotes: 0

Views: 134

Answers (1)

grohjy
grohjy

Reputation: 2149

Like this:

restaurants(where:{name_contains:["McD","King"],id_gt:5})

Gives you restaurants, which name contains ”McD” or ”King” AND which id is greater than ”5”

Upvotes: 1

Related Questions