ivor
01/06/2019, 12:56 PMWhereInput are not behaving as expected in my GraphQL queries, anyone know how to get around it or is it a bug?
I have a user with ID 5c2eb7d56344590009c22341 and when I query a user with id, id_in, id_lt, id_gt, id_lte, id_gte, id_not, id_not_in I get the expected results, but not with id_contains, id_ends_with, id_starts_with, id_not_contains, id_not_ends_with, id_not_starts_with.
For instance, this returns an empty users array
{
users(where: {id_ends_with: "c22341" }) {
id
}
}do4gr
do4gr