Hi,
I’m trying to set custom entities in my remote backend with the system token provided.
Accessing the Storage API with a GraphQL client is working fine, but trying to write always leads to a 500 internal server error returned by the GraphQL API
This is my mutation:
mutation forge_app_setApplicationStorageCustomEntity($input: SetAppStoredCustomEntityMutationInput!) {
appStorageCustomEntity {
setAppStoredCustomEntity(input: $input) {
success
errors {
message
extensions {
errorType
statusCode
}
}
}
}
}
And input:
{
"input": {
"contextAri": "<my ari>",
"key": "key1",
"entityName": "test",
"value": "{\"name\":\"first entity\"}"
}
}
Can someone help me?
Best regards,
Maxi