Ignore Availability

Similar to legacy Skylark’s ?all=true query, the optional ignore_availability argument can be passed to queries to completely skip the availability querying and just return the object regardless.

📘

Ignore Availability Header

It's also possible to specify whether to ignore availability using the header x-ignore-availability, with the value true or false.

The header takes priority over the argument.

query MyQuery {
  getEpisode(
    uid: "73c18d10-cec4-4237-ae96-9ecdd34d55f8", 
    ignore_availability: true
  ) {
    uid
    title
  }
}