Skip to content

Instantly share code, notes, and snippets.

View sarahsweat's full-sized avatar

Sarah Sweat sarahsweat

View GitHub Profile
export const GET_RECIPE = gql`
query Search($id: String!) {
search(q: $id, brand: FOOD, types: RECIPE) {
results {
...recipeResults
}
}
}
${RECIPE_ATTRIBUTES}
`