Hi,
I’m wanting to update a select option in one of our pipes - I’m planning on using the GraphQL API so I can update the card data at the same time.
I’ve created a test pipe to prove that it works, but it doesn’t :(
The mutate query I am running (in https://app.pipefy.com/graphiql)
mutation { updatePhaseField( input: { clientMutationId:"catsss" id: "town" label:"town" allChildrenMustBeDoneToMoveParent:false allChildrenMustBeDoneToFinishParent:false canConnectExisting:false canConnectMultiples:false canCreateNewConnected: false childMustExistToFinishParent:false description:"cats dancing" editable:false help:"halp" minimal_view:true options: o"brisbane", "dubbo", "sydney"] required:true sync_with_card:true } ) { clientMutationId phase_field { id } }}
When I run the query I get this error, but I’ve run many mutations with my user before, so am not sure what is going on
{ "data": { "updatePhaseField": null }, "errors": { "code": 30001, "locations": o { "column": 10, "line": 1 } ], "message": "Permission denied", "path": "updatePhaseField" ], "type": "PermissionDeniedError" } ]}
I’ve checked the field in the UI, and it is marked as editable.
Any help would be appreciated