File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
packages/web/app/src/components/organization/members Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -66,10 +66,12 @@ const ResourceSelector_OrganizationProjectTargetQuery = graphql(`
66
66
latestValidSchemaVersion {
67
67
id
68
68
schemas {
69
- nodes {
70
- ... on CompositeSchema {
71
- id
72
- service
69
+ edges {
70
+ node {
71
+ ... on CompositeSchema {
72
+ id
73
+ service
74
+ }
73
75
}
74
76
}
75
77
}
@@ -421,8 +423,9 @@ export function ResourceSelector(props: {
421
423
if (
422
424
organizationProjectTarget . data . organization . project . target ?. latestValidSchemaVersion ?. schemas
423
425
) {
424
- for ( const schema of organizationProjectTarget . data . organization . project . target
425
- . latestValidSchemaVersion . schemas . nodes ) {
426
+ for ( const edge of organizationProjectTarget . data . organization . project . target
427
+ . latestValidSchemaVersion . schemas . edges ) {
428
+ const schema = edge . node ;
426
429
if (
427
430
schema . __typename === 'CompositeSchema' &&
428
431
schema . service &&
You can’t perform that action at this time.
0 commit comments