Cannot query field "data" on type "Query". GraphQL: Validation

Hi! Can anyone help me to resolve this error?

My GraphQL file is this:

query Data($path: String) {
  data(path: $path) {
    url
    redirectTo
  }
}

The error message is this:

Cannot query field “data” on type “Query”. GraphQL: Validation Ln 2, Col 3

What does your SDL look like? From the error message it looks like you don’t have a query called data defined in your SDL