Skip to content

Commit 9184cd0

Browse files
committed
fix(queries)--add-teamID-to-other-dashboard-queries-to-restore-context-options
1 parent 247b9fb commit 9184cd0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

packages/app/src/app/graphql/types.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4269,6 +4269,7 @@ export type RecentlyDeletedTeamSandboxesFragment = {
42694269
isV2: boolean;
42704270
removedAt: string | null;
42714271
title: string | null;
4272+
teamId: any | null;
42724273
collection: {
42734274
__typename?: 'Collection';
42744275
id: any | null;
@@ -4751,6 +4752,7 @@ export type SearchTeamSandboxFragment = {
47514752
restricted: boolean;
47524753
privacy: number;
47534754
screenshotUrl: string | null;
4755+
teamId: any | null;
47544756
source: { __typename?: 'Source'; template: string | null };
47554757
customTemplate: {
47564758
__typename?: 'Template';
@@ -4817,6 +4819,7 @@ export type RecentlyAccessedSandboxFragment = {
48174819
draft: boolean;
48184820
isV2: boolean;
48194821
screenshotUrl: string | null;
4822+
teamId: any | null;
48204823
source: { __typename?: 'Source'; template: string | null };
48214824
customTemplate: {
48224825
__typename?: 'Template';
@@ -4893,6 +4896,7 @@ export type WorkspaceSandboxFragment = {
48934896
restricted: boolean;
48944897
privacy: number;
48954898
screenshotUrl: string | null;
4899+
teamId: any | null;
48964900
source: { __typename?: 'Source'; template: string | null };
48974901
customTemplate: {
48984902
__typename?: 'Template';
@@ -4994,6 +4998,7 @@ export type CollaboratorSandboxFragment = {
49944998
restricted: boolean;
49954999
privacy: number;
49965000
screenshotUrl: string | null;
5001+
teamId: any | null;
49975002
source: { __typename?: 'Source'; template: string | null };
49985003
customTemplate: {
49995004
__typename?: 'Template';

packages/app/src/app/overmind/effects/gql/dashboard/queries.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ fragment recentlyDeletedTeamSandboxes on Sandbox {
7676
isV2
7777
removedAt
7878
title
79+
teamId
7980
}
8081
`;
8182

@@ -336,6 +337,7 @@ const SEARCH_TEAM_SANDBOX_FRAGMENT = gql`
336337
path
337338
id
338339
}
340+
teamId
339341
}
340342
`;
341343

@@ -392,6 +394,7 @@ const RECENTLY_ACCESSED_SANDBOX_FRAGMENT = gql`
392394
author {
393395
username
394396
}
397+
teamId
395398
}
396399
`;
397400

@@ -442,6 +445,7 @@ const WORKSPACE_SANDBOX_FRAGMENT = gql`
442445
path
443446
id
444447
}
448+
teamId
445449
}
446450
`;
447451

@@ -510,6 +514,7 @@ const COLLABORATOR_SANDBOX_FRAGMENT = gql`
510514
path
511515
id
512516
}
517+
teamId
513518
}
514519
`;
515520

0 commit comments

Comments
 (0)