Skip to content

Commit

Permalink
Update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Oct 29, 2024
1 parent f43ca85 commit 7286038
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions client/src/app/generated/civic.apollo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,13 +491,13 @@ export enum AssertionType {
}

export enum AssociatedEvidenceStatusFilter {
/** Display all molecular profiles regardless of attached evidence status. */
/** Apply no status filter to an entity in order to display all entities regardless of attached evidence status. */
All = 'ALL',
/** Display only molecular profiles which have at least one accepted evidence item. */
/** Apply filter to an entity to display only those which have at least one accepted associated evidence item. */
WithAccepted = 'WITH_ACCEPTED',
/** Display only molecular profiles which have evidence in either an accepted or submitted state. */
/** Apply filter to an entity to display only those which have at least one accepted or submitted associated evidence item. */
WithAcceptedOrSubmitted = 'WITH_ACCEPTED_OR_SUBMITTED',
/** Display molecular profiles which have at least one submitted evidence item. */
/** Apply filter to an entity to display only those which have at least one submitted associated evidence item. */
WithSubmitted = 'WITH_SUBMITTED'
}

Expand Down
12 changes: 6 additions & 6 deletions client/src/app/generated/server.model.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -798,22 +798,22 @@ enum AssertionType {

enum AssociatedEvidenceStatusFilter {
"""
Display all molecular profiles regardless of attached evidence status.
Apply no status filter to an entity in order to display all entities regardless of attached evidence status.
"""
ALL

"""
Display only molecular profiles which have at least one accepted evidence item.
Apply filter to an entity to display only those which have at least one accepted associated evidence item.
"""
WITH_ACCEPTED

"""
Display only molecular profiles which have evidence in either an accepted or submitted state.
Apply filter to an entity to display only those which have at least one accepted or submitted associated evidence item.
"""
WITH_ACCEPTED_OR_SUBMITTED

"""
Display molecular profiles which have at least one submitted evidence item.
Apply filter to an entity to display only those which have at least one submitted associated evidence item.
"""
WITH_SUBMITTED
}
Expand Down Expand Up @@ -8947,7 +8947,7 @@ type Query {
before: String

"""
Limit genes by the status of attached evidence.
Limit factors by the status of attached evidence.
"""
evidenceStatusFilter: AssociatedEvidenceStatusFilter

Expand Down Expand Up @@ -9053,7 +9053,7 @@ type Query {
before: String

"""
Limit genes by the status of attached evidence.
Limit fusions by the status of attached evidence.
"""
evidenceStatusFilter: AssociatedEvidenceStatusFilter

Expand Down
12 changes: 6 additions & 6 deletions client/src/app/generated/server.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3616,25 +3616,25 @@
"enumValues": [
{
"name": "WITH_ACCEPTED",
"description": "Display only molecular profiles which have at least one accepted evidence item.",
"description": "Apply filter to an entity to display only those which have at least one accepted associated evidence item.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "WITH_ACCEPTED_OR_SUBMITTED",
"description": "Display only molecular profiles which have evidence in either an accepted or submitted state.",
"description": "Apply filter to an entity to display only those which have at least one accepted or submitted associated evidence item.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "WITH_SUBMITTED",
"description": "Display molecular profiles which have at least one submitted evidence item.",
"description": "Apply filter to an entity to display only those which have at least one submitted associated evidence item.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "ALL",
"description": "Display all molecular profiles regardless of attached evidence status.",
"description": "Apply no status filter to an entity in order to display all entities regardless of attached evidence status.",
"isDeprecated": false,
"deprecationReason": null
}
Expand Down Expand Up @@ -41076,7 +41076,7 @@
"args": [
{
"name": "evidenceStatusFilter",
"description": "Limit genes by the status of attached evidence.",
"description": "Limit factors by the status of attached evidence.",
"type": {
"kind": "ENUM",
"name": "AssociatedEvidenceStatusFilter",
Expand Down Expand Up @@ -41450,7 +41450,7 @@
"args": [
{
"name": "evidenceStatusFilter",
"description": "Limit genes by the status of attached evidence.",
"description": "Limit fusions by the status of attached evidence.",
"type": {
"kind": "ENUM",
"name": "AssociatedEvidenceStatusFilter",
Expand Down

0 comments on commit 7286038

Please sign in to comment.