Closed punjasin closed 1 year ago
how is the backend generated that uses that dialect?
I am using prisma typegraphql generator it was working fine before since yesterday it after i add more model
what version of ra-data-prisma and typegraphql are you using?
sounds to me that you forget to setup properly configuration..
can you share it?
const options: Options = {
....
queryDialect: 'typegraphql',
};
it was
"typegraphql-prisma": "^0.26.0",
"typegraphql-prisma": "^0.26.0",
and on react admin i am using lasted one
queryDialect: "typegraphql", mutationOperationNames: { typegraphql: { [CREATE]: (resource) =>
createOne${resource.name}, [UPDATE]: (resource) =>
updateOne${resource.name}, [DELETE]: (resource) =>
deleteOne${resource.name}, }, },
after i revert my yarn lock issue is resolve seem like sub version of type graphql has some breaking change broke this i ll close the ticket
it return sort order must be object how do I fix this
query need to be
instead of
how do I customize this :(