Ignore Availability

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 getEpisode {
  getEpisode(
    uid: "73c18d10-cec4-4237-ae96-9ecdd34d55f8", 
    ignore_availability: true
  ) {
    uid
    title
  }
}