You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GraphQL examples now pipe into a separate jq (... | jq -r '(.data // {}) | ...') instead of the --jq flag. When a GraphQL response carries an errors array, gh api graphql ignores --jq and dumps the raw body, so the (.data // {}) guard never ran and downstream parsing hit KeyError: 'data'. The pipe form runs the guard on the raw body.
Issue search no longer hardcodes --state open / state:open; omit the state qualifier to return open and closed in one call. --state all is documented as invalid.
Added the missing (.labels.nodes // []) null-guard to the canonical Project-evidence jq.