btotharye
03/15/2019, 1:05 PMquery SEARCH_SNAKES_QUERY($searchTerm: String!) {
snakes(
where: {
OR: [
{ name_contains: $searchTerm }
{ description_contains: $searchTerm }
]
}
) {
id
image
name
}
}Harshit
03/15/2019, 2:29 PMbtotharye
03/15/2019, 5:45 PM