/** * GraphQL query strings used by pr-shepherd. * * Static query strings live in src/github/gql/*.gql and are loaded here. * Dynamic documents whose content varies per call (e.g. BulkApply in * src/comments/resolve.mts) are built at runtime and are exempt — they * cannot be expressed as static files. */ /** The primary batch query that fetches CI + comments + merge status in one round-trip. */ export declare const BATCH_PR_QUERY: string; /** Slim @include follow-up for outstanding batch-query connections. */ export declare const BATCH_PR_PAGE_QUERY: string; /** Cheap PR fingerprint used to skip an unchanged BatchPr snapshot. */ export declare const PR_FINGERPRINT_QUERY: string; /** Compact per-PR fields shared by explicit-list and native-stack summary queries. */ export declare const POLL_SUMMARY_FRAGMENT: string; /** Discovers and summarizes every entry in one native GitHub pull-request stack. */ export declare const POLL_STACK_SUMMARY_QUERY: string; /** PR head fields plus a single review thread for `commit-suggestion`. */ export declare const SUGGESTION_THREADS_QUERY: string; /** Fetches additional comments for a single review thread when its nested connection paginates. */ export declare const REVIEW_THREAD_COMMENTS_QUERY: string; /** Fetch inline annotations for a single CheckRun by node ID. */ export declare const CHECK_RUN_ANNOTATIONS_QUERY: string; /** Fetches additional status contexts for a merge queue synthetic commit. */ export declare const COMMIT_CHECK_CONTEXTS_QUERY: string; /** Returns the current head commit SHA for a PR. Used by waitForSha polling. */ export declare const GET_PR_HEAD_SHA_QUERY: string; /** Look up PR number by branch name (for getCurrentPrNumber). */ export declare const PR_NUMBER_BY_BRANCH_QUERY: string; /** Convert a draft PR to ready for review. */ export declare const MARK_PR_READY_MUTATION: string; /** Fetch the PR body and node ID. */ export declare const GET_PR_BODY_QUERY: string; /** Update the PR body. */ export declare const UPDATE_PR_BODY_MUTATION: string;