GraphQL Object Query returns null

Hi there,

I’m trying to retrieve some model data using a graphQL query. I have the following model:

And use the following query:

query Object($projectId: String!, $objectId: String!) {
    project(id: $projectId) {
      object(id: $objectId) {
        data
      }
    }
  }

Somehow it returns null while the same query works perfectly fine for another model in the same project.
I am admin and owner of both the workspace and the project, so it shouldn’t be a rights issue (and as I said, it works fine for another model in the project). Any ideas?

Cheers,

Merijn