0x12
Results
1
issues of
0x12
GraphQL Mutation how to make fields optional to update fields only by selection and generate schema
1
I have a graphql mutation defined as follows ``` updateParts( partId: String! parts: PartRequest! ): UpdatePartsResponse! input PartRequest { name: String! image: Strings! boltTypes: [Bolts]! } input Bolts { code:...