Created
June 7, 2019 18:09
-
-
Save sarahsweat/eceb511684e5e0cf3fe6e5f21c3ded6c to your computer and use it in GitHub Desktop.
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
export const GET_RECIPE = gql` | |
query Search($id: String!) { | |
search(q: $id, brand: FOOD, types: RECIPE) { | |
results { | |
...recipeResults | |
} | |
} | |
} | |
${RECIPE_ATTRIBUTES} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment