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
I'm trying to use the uid as a key to mutate data in my resolver, since the uid only lives in the directive and is output via a graphql query i'm having a hard time designing the best way to link the uid back to the data outside of the graph. ie.
constschema=gql`directive @uid(from: [String]) on OBJECTtype Element @uid(from: ["email", "name"]) { name: String! email: String!}type Query { elements: [Element]}mutation DeleteElement($uid:String) { deleteElement(uid:$uid) : Boolean}`;constelements=[{name:"bill",email: "[email protected]"}]constresolvers={Query: {elements: ()=>elements},Mutations: {deleteElement: (parent,{uid})=>{// how am I supposed to find the index in elements without redoing the hash work you do in the resolve function of UniqueIdDirective}}}
I understand I could redo the work that is done here UniqueId.visitObject()fields[].resolve
but this seems like a hack.
Should this uid be used for anything but caching? Is there another way to resolve the uid outside of the graph? Has anyone done something else to resolve this problem?
The text was updated successfully, but these errors were encountered:
I'm trying to use the uid as a key to mutate data in my resolver, since the uid only lives in the directive and is output via a graphql query i'm having a hard time designing the best way to link the uid back to the data outside of the graph. ie.
I understand I could redo the work that is done here UniqueId.visitObject()fields[].resolve
but this seems like a hack.
Should this uid be used for anything but caching? Is there another way to resolve the uid outside of the graph? Has anyone done something else to resolve this problem?
The text was updated successfully, but these errors were encountered: