Created
June 25, 2020 10:20
-
-
Save velotiotech/0bc4abbf3d6885c92d7b99111aad657d to your computer and use it in GitHub Desktop.
Snippet #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query searchRestaurants { | |
listRestaurants(filter: { | |
city: { | |
contains: "New York" | |
} | |
}) { | |
items { | |
id | |
name | |
description | |
city | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment