Skip to content

prefect_github.schemas.graphql_schema

AbortQueuedMigrationsInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2161
2162
2163
2164
2165
2166
2167
2168
2169
class AbortQueuedMigrationsInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("owner_id", "client_mutation_id")
    owner_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="ownerId")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AbortQueuedMigrationsPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6763
6764
6765
6766
6767
6768
6769
6770
6771
class AbortQueuedMigrationsPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "success")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    success = sgqlc.types.Field(Boolean, graphql_name="success")

AcceptEnterpriseAdministratorInvitationInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
class AcceptEnterpriseAdministratorInvitationInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("invitation_id", "client_mutation_id")
    invitation_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="invitationId"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AcceptEnterpriseAdministratorInvitationPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
class AcceptEnterpriseAdministratorInvitationPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "invitation", "message")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    invitation = sgqlc.types.Field(
        "EnterpriseAdministratorInvitation", graphql_name="invitation"
    )
    message = sgqlc.types.Field(String, graphql_name="message")

AcceptTopicSuggestionInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
class AcceptTopicSuggestionInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("repository_id", "name", "client_mutation_id")
    repository_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="repositoryId"
    )
    name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AcceptTopicSuggestionPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6788
6789
6790
6791
6792
6793
6794
6795
6796
class AcceptTopicSuggestionPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "topic")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    topic = sgqlc.types.Field("Topic", graphql_name="topic")

Actor

Bases: Interface

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
class Actor(sgqlc.types.Interface):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("avatar_url", "login", "resource_path", "url")
    avatar_url = sgqlc.types.Field(
        sgqlc.types.non_null(URI),
        graphql_name="avatarUrl",
        args=sgqlc.types.ArgDict(
            (("size", sgqlc.types.Arg(Int, graphql_name="size", default=None)),)
        ),
    )
    login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="login")
    resource_path = sgqlc.types.Field(
        sgqlc.types.non_null(URI), graphql_name="resourcePath"
    )
    url = sgqlc.types.Field(sgqlc.types.non_null(URI), graphql_name="url")

ActorLocation

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
class ActorLocation(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("city", "country", "country_code", "region", "region_code")
    city = sgqlc.types.Field(String, graphql_name="city")
    country = sgqlc.types.Field(String, graphql_name="country")
    country_code = sgqlc.types.Field(String, graphql_name="countryCode")
    region = sgqlc.types.Field(String, graphql_name="region")
    region_code = sgqlc.types.Field(String, graphql_name="regionCode")

ActorType

Bases: Enum

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
16
17
18
19
20
21
22
class ActorType(sgqlc.types.Enum):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __choices__ = ("TEAM", "USER")

AddAssigneesToAssignableInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
class AddAssigneesToAssignableInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("assignable_id", "assignee_ids", "client_mutation_id")
    assignable_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="assignableId"
    )
    assignee_ids = sgqlc.types.Field(
        sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))),
        graphql_name="assigneeIds",
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddAssigneesToAssignablePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6834
6835
6836
6837
6838
6839
6840
6841
6842
class AddAssigneesToAssignablePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("assignable", "client_mutation_id")
    assignable = sgqlc.types.Field("Assignable", graphql_name="assignable")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddCommentInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
class AddCommentInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("subject_id", "body", "client_mutation_id")
    subject_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="subjectId")
    body = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="body")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddCommentPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
class AddCommentPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "comment_edge", "subject", "timeline_edge")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    comment_edge = sgqlc.types.Field("IssueCommentEdge", graphql_name="commentEdge")
    subject = sgqlc.types.Field("Node", graphql_name="subject")
    timeline_edge = sgqlc.types.Field(
        "IssueTimelineItemEdge", graphql_name="timelineEdge"
    )

AddDiscussionCommentInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
class AddDiscussionCommentInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("discussion_id", "reply_to_id", "body", "client_mutation_id")
    discussion_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="discussionId"
    )
    reply_to_id = sgqlc.types.Field(ID, graphql_name="replyToId")
    body = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="body")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddDiscussionCommentPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6860
6861
6862
6863
6864
6865
6866
6867
6868
class AddDiscussionCommentPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "comment")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    comment = sgqlc.types.Field("DiscussionComment", graphql_name="comment")

AddDiscussionPollVoteInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
class AddDiscussionPollVoteInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("poll_option_id", "client_mutation_id")
    poll_option_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="pollOptionId"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddDiscussionPollVotePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6871
6872
6873
6874
6875
6876
6877
6878
6879
class AddDiscussionPollVotePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "poll_option")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    poll_option = sgqlc.types.Field("DiscussionPollOption", graphql_name="pollOption")

AddEnterpriseSupportEntitlementInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
class AddEnterpriseSupportEntitlementInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("enterprise_id", "login", "client_mutation_id")
    enterprise_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="enterpriseId"
    )
    login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="login")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddEnterpriseSupportEntitlementPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6882
6883
6884
6885
6886
6887
6888
6889
6890
class AddEnterpriseSupportEntitlementPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "message")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    message = sgqlc.types.Field(String, graphql_name="message")

AddLabelsToLabelableInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
class AddLabelsToLabelableInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("labelable_id", "label_ids", "client_mutation_id")
    labelable_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="labelableId"
    )
    label_ids = sgqlc.types.Field(
        sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))),
        graphql_name="labelIds",
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddLabelsToLabelablePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6893
6894
6895
6896
6897
6898
6899
6900
6901
class AddLabelsToLabelablePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "labelable")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    labelable = sgqlc.types.Field("Labelable", graphql_name="labelable")

AddProjectCardInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
class AddProjectCardInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("project_column_id", "content_id", "note", "client_mutation_id")
    project_column_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="projectColumnId"
    )
    content_id = sgqlc.types.Field(ID, graphql_name="contentId")
    note = sgqlc.types.Field(String, graphql_name="note")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectCardPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
class AddProjectCardPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("card_edge", "client_mutation_id", "project_column")
    card_edge = sgqlc.types.Field("ProjectCardEdge", graphql_name="cardEdge")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    project_column = sgqlc.types.Field("ProjectColumn", graphql_name="projectColumn")

AddProjectColumnInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
class AddProjectColumnInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("project_id", "name", "client_mutation_id")
    project_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="projectId")
    name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectColumnPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
class AddProjectColumnPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "column_edge", "project")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    column_edge = sgqlc.types.Field("ProjectColumnEdge", graphql_name="columnEdge")
    project = sgqlc.types.Field("Project", graphql_name="project")

AddProjectDraftIssueInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
class AddProjectDraftIssueInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "project_id",
        "title",
        "body",
        "assignee_ids",
        "client_mutation_id",
    )
    project_id = sgqlc.types.Field(ID, graphql_name="projectId")
    title = sgqlc.types.Field(String, graphql_name="title")
    body = sgqlc.types.Field(String, graphql_name="body")
    assignee_ids = sgqlc.types.Field(
        sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name="assigneeIds"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectDraftIssuePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
class AddProjectDraftIssuePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "project_next_item")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    project_next_item = sgqlc.types.Field(
        "ProjectNextItem", graphql_name="projectNextItem"
    )

AddProjectNextItemInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
class AddProjectNextItemInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("project_id", "content_id", "client_mutation_id")
    project_id = sgqlc.types.Field(ID, graphql_name="projectId")
    content_id = sgqlc.types.Field(ID, graphql_name="contentId")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectNextItemPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
class AddProjectNextItemPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "project_next_item")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    project_next_item = sgqlc.types.Field(
        "ProjectNextItem", graphql_name="projectNextItem"
    )

AddProjectV2DraftIssueInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
class AddProjectV2DraftIssueInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "project_id",
        "title",
        "body",
        "assignee_ids",
        "client_mutation_id",
    )
    project_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="projectId")
    title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="title")
    body = sgqlc.types.Field(String, graphql_name="body")
    assignee_ids = sgqlc.types.Field(
        sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name="assigneeIds"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectV2DraftIssuePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6954
6955
6956
6957
6958
6959
6960
6961
6962
class AddProjectV2DraftIssuePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "project_item")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    project_item = sgqlc.types.Field("ProjectV2Item", graphql_name="projectItem")

AddProjectV2ItemByIdInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
class AddProjectV2ItemByIdInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("project_id", "content_id", "client_mutation_id")
    project_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="projectId")
    content_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="contentId")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddProjectV2ItemByIdPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6965
6966
6967
6968
6969
6970
6971
6972
6973
class AddProjectV2ItemByIdPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "item")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    item = sgqlc.types.Field("ProjectV2Item", graphql_name="item")

AddPullRequestReviewCommentInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
class AddPullRequestReviewCommentInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "pull_request_id",
        "pull_request_review_id",
        "commit_oid",
        "body",
        "path",
        "position",
        "in_reply_to",
        "client_mutation_id",
    )
    pull_request_id = sgqlc.types.Field(ID, graphql_name="pullRequestId")
    pull_request_review_id = sgqlc.types.Field(ID, graphql_name="pullRequestReviewId")
    commit_oid = sgqlc.types.Field(GitObjectID, graphql_name="commitOID")
    body = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="body")
    path = sgqlc.types.Field(String, graphql_name="path")
    position = sgqlc.types.Field(Int, graphql_name="position")
    in_reply_to = sgqlc.types.Field(ID, graphql_name="inReplyTo")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddPullRequestReviewCommentPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
class AddPullRequestReviewCommentPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "comment", "comment_edge")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    comment = sgqlc.types.Field("PullRequestReviewComment", graphql_name="comment")
    comment_edge = sgqlc.types.Field(
        "PullRequestReviewCommentEdge", graphql_name="commentEdge"
    )

AddPullRequestReviewInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
class AddPullRequestReviewInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "pull_request_id",
        "commit_oid",
        "body",
        "event",
        "comments",
        "threads",
        "client_mutation_id",
    )
    pull_request_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="pullRequestId"
    )
    commit_oid = sgqlc.types.Field(GitObjectID, graphql_name="commitOID")
    body = sgqlc.types.Field(String, graphql_name="body")
    event = sgqlc.types.Field(PullRequestReviewEvent, graphql_name="event")
    comments = sgqlc.types.Field(
        sgqlc.types.list_of("DraftPullRequestReviewComment"), graphql_name="comments"
    )
    threads = sgqlc.types.Field(
        sgqlc.types.list_of("DraftPullRequestReviewThread"), graphql_name="threads"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddPullRequestReviewPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
class AddPullRequestReviewPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "pull_request_review", "review_edge")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    pull_request_review = sgqlc.types.Field(
        "PullRequestReview", graphql_name="pullRequestReview"
    )
    review_edge = sgqlc.types.Field("PullRequestReviewEdge", graphql_name="reviewEdge")

AddPullRequestReviewThreadInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
class AddPullRequestReviewThreadInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "path",
        "body",
        "pull_request_id",
        "pull_request_review_id",
        "line",
        "side",
        "start_line",
        "start_side",
        "client_mutation_id",
    )
    path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="path")
    body = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="body")
    pull_request_id = sgqlc.types.Field(ID, graphql_name="pullRequestId")
    pull_request_review_id = sgqlc.types.Field(ID, graphql_name="pullRequestReviewId")
    line = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="line")
    side = sgqlc.types.Field(DiffSide, graphql_name="side")
    start_line = sgqlc.types.Field(Int, graphql_name="startLine")
    start_side = sgqlc.types.Field(DiffSide, graphql_name="startSide")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddPullRequestReviewThreadPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7004
7005
7006
7007
7008
7009
7010
7011
7012
class AddPullRequestReviewThreadPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "thread")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    thread = sgqlc.types.Field("PullRequestReviewThread", graphql_name="thread")

AddReactionInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
class AddReactionInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("subject_id", "content", "client_mutation_id")
    subject_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="subjectId")
    content = sgqlc.types.Field(
        sgqlc.types.non_null(ReactionContent), graphql_name="content"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddReactionPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
class AddReactionPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "reaction", "subject")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    reaction = sgqlc.types.Field("Reaction", graphql_name="reaction")
    subject = sgqlc.types.Field("Reactable", graphql_name="subject")

AddStarInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
class AddStarInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("starrable_id", "client_mutation_id")
    starrable_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="starrableId"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddStarPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7027
7028
7029
7030
7031
7032
7033
7034
7035
class AddStarPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "starrable")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    starrable = sgqlc.types.Field("Starrable", graphql_name="starrable")

AddUpvoteInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2493
2494
2495
2496
2497
2498
2499
2500
2501
class AddUpvoteInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("subject_id", "client_mutation_id")
    subject_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="subjectId")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddUpvotePayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7038
7039
7040
7041
7042
7043
7044
7045
7046
class AddUpvotePayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "subject")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    subject = sgqlc.types.Field("Votable", graphql_name="subject")

AddVerifiableDomainInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
class AddVerifiableDomainInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("owner_id", "domain", "client_mutation_id")
    owner_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="ownerId")
    domain = sgqlc.types.Field(sgqlc.types.non_null(URI), graphql_name="domain")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

AddVerifiableDomainPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7049
7050
7051
7052
7053
7054
7055
7056
7057
class AddVerifiableDomainPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "domain")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    domain = sgqlc.types.Field("VerifiableDomain", graphql_name="domain")

AddedToProjectEvent

Bases: Type, Node

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
21620
21621
21622
21623
21624
21625
21626
21627
21628
21629
21630
21631
class AddedToProjectEvent(sgqlc.types.Type, Node):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("actor", "created_at", "database_id")
    actor = sgqlc.types.Field(Actor, graphql_name="actor")
    created_at = sgqlc.types.Field(
        sgqlc.types.non_null(DateTime), graphql_name="createdAt"
    )
    database_id = sgqlc.types.Field(Int, graphql_name="databaseId")

App

Bases: Type, Node

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
21634
21635
21636
21637
21638
21639
21640
21641
21642
21643
21644
21645
21646
21647
21648
21649
21650
21651
21652
21653
21654
21655
21656
21657
21658
21659
21660
21661
21662
21663
21664
21665
21666
21667
21668
21669
21670
21671
21672
21673
21674
21675
21676
21677
21678
21679
21680
21681
21682
21683
21684
21685
21686
21687
21688
21689
21690
21691
21692
21693
21694
21695
class App(sgqlc.types.Type, Node):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "created_at",
        "database_id",
        "description",
        "ip_allow_list_entries",
        "logo_background_color",
        "logo_url",
        "name",
        "slug",
        "updated_at",
        "url",
    )
    created_at = sgqlc.types.Field(
        sgqlc.types.non_null(DateTime), graphql_name="createdAt"
    )
    database_id = sgqlc.types.Field(Int, graphql_name="databaseId")
    description = sgqlc.types.Field(String, graphql_name="description")
    ip_allow_list_entries = sgqlc.types.Field(
        sgqlc.types.non_null(IpAllowListEntryConnection),
        graphql_name="ipAllowListEntries",
        args=sgqlc.types.ArgDict(
            (
                ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
                (
                    "before",
                    sgqlc.types.Arg(String, graphql_name="before", default=None),
                ),
                ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
                ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
                (
                    "order_by",
                    sgqlc.types.Arg(
                        IpAllowListEntryOrder,
                        graphql_name="orderBy",
                        default={"field": "ALLOW_LIST_VALUE", "direction": "ASC"},
                    ),
                ),
            )
        ),
    )
    logo_background_color = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name="logoBackgroundColor"
    )
    logo_url = sgqlc.types.Field(
        sgqlc.types.non_null(URI),
        graphql_name="logoUrl",
        args=sgqlc.types.ArgDict(
            (("size", sgqlc.types.Arg(Int, graphql_name="size", default=None)),)
        ),
    )
    name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
    slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="slug")
    updated_at = sgqlc.types.Field(
        sgqlc.types.non_null(DateTime), graphql_name="updatedAt"
    )
    url = sgqlc.types.Field(sgqlc.types.non_null(URI), graphql_name="url")

ApproveDeploymentsInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
class ApproveDeploymentsInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "workflow_run_id",
        "environment_ids",
        "comment",
        "client_mutation_id",
    )
    workflow_run_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="workflowRunId"
    )
    environment_ids = sgqlc.types.Field(
        sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))),
        graphql_name="environmentIds",
    )
    comment = sgqlc.types.Field(String, graphql_name="comment")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

ApproveDeploymentsPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
class ApproveDeploymentsPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "deployments")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    deployments = sgqlc.types.Field(
        sgqlc.types.list_of(sgqlc.types.non_null("Deployment")),
        graphql_name="deployments",
    )

ApproveVerifiableDomainInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2539
2540
2541
2542
2543
2544
2545
2546
2547
class ApproveVerifiableDomainInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("id", "client_mutation_id")
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

ApproveVerifiableDomainPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7074
7075
7076
7077
7078
7079
7080
7081
7082
class ApproveVerifiableDomainPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "domain")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    domain = sgqlc.types.Field("VerifiableDomain", graphql_name="domain")

ArchiveRepositoryInput

Bases: Input

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
class ArchiveRepositoryInput(sgqlc.types.Input):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("repository_id", "client_mutation_id")
    repository_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name="repositoryId"
    )
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")

ArchiveRepositoryPayload

Bases: Type

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7085
7086
7087
7088
7089
7090
7091
7092
7093
class ArchiveRepositoryPayload(sgqlc.types.Type):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("client_mutation_id", "repository")
    client_mutation_id = sgqlc.types.Field(String, graphql_name="clientMutationId")
    repository = sgqlc.types.Field("Repository", graphql_name="repository")

Assignable

Bases: Interface

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
class Assignable(sgqlc.types.Interface):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("assignees",)
    assignees = sgqlc.types.Field(
        sgqlc.types.non_null("UserConnection"),
        graphql_name="assignees",
        args=sgqlc.types.ArgDict(
            (
                ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
                (
                    "before",
                    sgqlc.types.Arg(String, graphql_name="before", default=None),
                ),
                ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
                ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
            )
        ),
    )

AssignedEvent

Bases: Type, Node

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
21698
21699
21700
21701
21702
21703
21704
21705
21706
21707
21708
21709
21710
21711
21712
21713
class AssignedEvent(sgqlc.types.Type, Node):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = ("actor", "assignable", "assignee", "created_at", "user")
    actor = sgqlc.types.Field(Actor, graphql_name="actor")
    assignable = sgqlc.types.Field(
        sgqlc.types.non_null(Assignable), graphql_name="assignable"
    )
    assignee = sgqlc.types.Field("Assignee", graphql_name="assignee")
    created_at = sgqlc.types.Field(
        sgqlc.types.non_null(DateTime), graphql_name="createdAt"
    )
    user = sgqlc.types.Field("User", graphql_name="user")

Assignee

Bases: Union

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
32367
32368
32369
32370
32371
32372
32373
class Assignee(sgqlc.types.Union):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __types__ = (Bot, Mannequin, Organization, User)

AuditEntry

Bases: Interface

See source code for more info.

Source code in prefect_github/schemas/graphql_schema.py
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
class AuditEntry(sgqlc.types.Interface):
    """
    See source code for more info.
    """

    __schema__ = graphql_schema
    __field_names__ = (
        "action",
        "actor",
        "actor_ip",
        "actor_location",
        "actor_login",
        "actor_resource_path",
        "actor_url",
        "created_at",
        "operation_type",
        "user",
        "user_login",
        "user_resource_path",
        "user_url",
    )
    action = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="action")
    actor = sgqlc.types.Field("AuditEntryActor", graphql_name="actor")
    actor_ip = sgqlc.types.Field(String, graphql_name="actorIp")
    actor_location = sgqlc.types.Field(ActorLocation, graphql_name="actorLocation")
    actor_login = sgqlc.types.Field(String, graphql_name="actorLogin")
    actor_resource_path = sgqlc.types.Field(URI, graphql_name="actorResourcePath")
    actor_url = sgqlc.types.Field(URI, graphql_name="actorUrl")
    created_at = sgqlc.types.Field(
        sgqlc.types.non_null(PreciseDateTime), graphql_name="createdAt"
    )
    operation_type = sgqlc.types.Field(OperationType, graphql_name="operationType")
    user = sgqlc.types.Field("User", graphql_name="user")
    user_login = sgqlc.types.Field(String, graphql_name="userLogin")
    user_resource_path = sgqlc.types.Field(URI, graphql_name=<