export const FILTER_QUERY = gql`
query collections($id:ID!){
collections(
where:{id:$id}
){
id
name
symbol
description
volumes{
date
price
}
product(orderBy:id, orderDirection:desc,filter:{price:{gt:10}})
{
id
image
tokenID
name
price
owner
}
}
}
`;