You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, not sure what is going on, but fragment replacements stopped working. I have version "2.2.10".
This is my resolveer:
Process: {owner: {fragment: graphql` fragment Instance on BpmnProcessInstance { processId ownerId } `,resolve(parent,_,ctx){// here parent does not have processId, neither ownerIdreturnctx.db.query.user({where: {id: parent.ownerId}});}}}
I am collecting fragemtns with:
const fragmentReplacements = extractFragmentReplacements(resolvers);
// and using with binding
import * as Prisma from './generated/prisma';
let db: Prisma.Prisma = new Prisma.Prisma({
fragmentReplacements,
endpoint: process.env.ENDPOINT
});
Yet, no luck ...
The text was updated successfully, but these errors were encountered:
Hi, not sure what is going on, but fragment replacements stopped working. I have version "2.2.10".
This is my resolveer:
I am collecting fragemtns with:
Yet, no luck ...
The text was updated successfully, but these errors were encountered: