How to query data in Ratel UI that was created/mutated using GraphQL?

Hi @dbazina-dev,

Welcome to the community.

No, that’s not true. The “secret” is that you have to prefix the predicates with the type. For instance, take this GraphQL schema:

type Person {
    name: String
}

A DQL query to get all names:

query {
  names(func: type(Person)) {
      Person.name
  }
}