@@ -90,7 +90,7 @@ export type ActivityInterface = {
90
90
/** The connection type for ActivityInterface. */
91
91
export type ActivityInterfaceConnection = {
92
92
__typename: 'ActivityInterfaceConnection';
93
- /** List of activity types that have occured on this entity. */
93
+ /** List of activity types that have occurred on this entity. */
94
94
activityTypes: Array<ActivityTypeInput>;
95
95
/** A list of edges. */
96
96
edges: Array<ActivityInterfaceEdge>;
@@ -1594,7 +1594,7 @@ export type EventConnection = {
1594
1594
__typename: 'EventConnection';
1595
1595
/** A list of edges. */
1596
1596
edges: Array<EventEdge>;
1597
- /** List of event types that have occured on this entity. */
1597
+ /** List of event types that have occurred on this entity. */
1598
1598
eventTypes: Array<EventAction>;
1599
1599
/** A list of nodes. */
1600
1600
nodes: Array<Event>;
@@ -3305,7 +3305,7 @@ export enum MolecularProfileDisplayFilter {
3305
3305
WithAccepted = 'WITH_ACCEPTED',
3306
3306
/** Display only molecular profiles which have evidence in either an accepted or submitted state. */
3307
3307
WithAcceptedOrSubmitted = 'WITH_ACCEPTED_OR_SUBMITTED',
3308
- /** Display molecular profiles which have at least one submited evidence item. */
3308
+ /** Display molecular profiles which have at least one submitted evidence item. */
3309
3309
WithSubmitted = 'WITH_SUBMITTED'
3310
3310
}
3311
3311
@@ -3415,7 +3415,7 @@ export type Mutation = {
3415
3415
*/
3416
3416
rejectRevisions?: Maybe<RejectRevisionsPayload>;
3417
3417
/**
3418
- * Resolve a flag on a CIViC entity indicating that it was either erronously flagged or the issue has been resolved.
3418
+ * Resolve a flag on a CIViC entity indicating that it was either erroneously flagged or the issue has been resolved.
3419
3419
* Any user may resolve their own flag however only editors with valid conflict
3420
3420
* of interest statements can resolve other flags.
3421
3421
*/
@@ -3448,7 +3448,7 @@ export type Mutation = {
3448
3448
suggestVariantGroupRevision?: Maybe<SuggestVariantGroupRevisionPayload>;
3449
3449
/** Unsubscribe from a CIViC entity to stop receiving notifications about it. */
3450
3450
unsubscribe?: Maybe<UnsubscribePayload>;
3451
- /** Update the currentlly logged in User's Conflict of Interest statement */
3451
+ /** Update the currently logged in User's Conflict of Interest statement */
3452
3452
updateCoi?: Maybe<UpdateCoiPayload>;
3453
3453
/** Mark one or more notifications as read/unread. The notification IDs provided must belong to the requesting user. */
3454
3454
updateNotificationStatus?: Maybe<UpdateNotificationStatusPayload>;
@@ -3765,7 +3765,7 @@ export type NotificationConnection = {
3765
3765
__typename: 'NotificationConnection';
3766
3766
/** A list of edges. */
3767
3767
edges: Array<NotificationEdge>;
3768
- /** List of event types that have occured on this entity. */
3768
+ /** List of event types that have occurred on this entity. */
3769
3769
eventTypes: Array<EventAction>;
3770
3770
/** Users who have mentioned you. */
3771
3771
mentioningUsers: Array<User>;
@@ -4265,6 +4265,8 @@ export type QueryActivitiesArgs = {
4265
4265
first?: InputMaybe<Scalars['Int']>;
4266
4266
last?: InputMaybe<Scalars['Int']>;
4267
4267
mode?: InputMaybe<EventFeedMode>;
4268
+ occuredAfter?: InputMaybe<Scalars['ISO8601DateTime']>;
4269
+ occuredBefore?: InputMaybe<Scalars['ISO8601DateTime']>;
4268
4270
organizationId?: InputMaybe<Array<Scalars['Int']>>;
4269
4271
sortBy?: InputMaybe<DateSort>;
4270
4272
subject?: InputMaybe<Array<SubscribableQueryInput>>;
@@ -7590,7 +7592,7 @@ export type VariantsMenuQueryVariables = Exact<{
7590
7592
}>;
7591
7593
7592
7594
7593
- export type VariantsMenuQuery = { __typename: 'Query', variants: { __typename: 'VariantInterfaceConnection', totalCount: number, pageInfo: { __typename: 'PageInfo', startCursor?: string | undefined, endCursor?: string | undefined, hasPreviousPage: boolean, hasNextPage: boolean }, nodes : Array<{ __typename: 'FactorVariant', id: number, name: string, link: string, flagged: boolean } | { __typename: 'GeneVariant', id: number, name: string, link: string, flagged: boolean } | { __typename: 'Variant', id: number, name: string, link: string, flagged: boolean }> } };
7595
+ export type VariantsMenuQuery = { __typename: 'Query', variants: { __typename: 'VariantInterfaceConnection', totalCount: number, pageInfo: { __typename: 'PageInfo', startCursor?: string | undefined, endCursor?: string | undefined, hasPreviousPage: boolean, hasNextPage: boolean }, edges : Array<{ __typename: 'VariantInterfaceEdge', cursor: string, node?: { __typename: ' FactorVariant', id: number, name: string, link: string, flagged: boolean } | { __typename: 'GeneVariant', id: number, name: string, link: string, flagged: boolean } | { __typename: 'Variant', id: number, name: string, link: string, flagged: boolean } | undefined }> } };
7594
7596
7595
7597
export type VariantTypesForFeatureQueryVariables = Exact<{
7596
7598
featureId?: InputMaybe<Scalars['Int']>;
@@ -13347,8 +13349,11 @@ export const VariantsMenuDocument = gql`
13347
13349
hasPreviousPage
13348
13350
hasNextPage
13349
13351
}
13350
- nodes {
13351
- ...menuVariant
13352
+ edges {
13353
+ cursor
13354
+ node {
13355
+ ...menuVariant
13356
+ }
13352
13357
}
13353
13358
}
13354
13359
}
0 commit comments