You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For all supported arguments and columns, see [the schema](src/types/userGroup.graphql).
622
+
For all supported arguments and columns, see [the schema](src/types/group.graphql).
623
623
624
-
##### User Group Queries
624
+
##### Group Queries
625
625
626
-
###### Query for a single user group
626
+
###### Query for a single group
627
627
628
628
Query:
629
629
```gql
630
-
queryUserGroup (
631
-
$params: UserGroupInput
630
+
queryGroup (
631
+
$params: GroupInput
632
632
) {
633
-
userGroup (
633
+
group (
634
634
params: $params
635
635
) {
636
636
groupId
@@ -648,14 +648,14 @@ Variables:
648
648
}
649
649
```
650
650
651
-
###### Query for multiple user groups
651
+
###### Query for multiple groups
652
652
653
653
Query:
654
654
```gql
655
-
queryUserGroups (
656
-
$params: UserGroupsInput
655
+
queryGroups (
656
+
$params: GroupsInput
657
657
) {
658
-
userGroups (
658
+
groups (
659
659
params: $params
660
660
) {
661
661
count
@@ -672,23 +672,23 @@ Variables:
672
672
{
673
673
"params": {
674
674
"tags": ["EXAMPLE"],
675
-
"name": "user-group-1"
675
+
"name": "group-1"
676
676
}
677
677
}
678
678
```
679
679
680
-
##### User Group Mutations
680
+
##### Group Mutations
681
681
682
-
###### Creating a user group
682
+
###### Creating a group
683
683
684
684
Query:
685
685
```gql
686
-
mutationCreateUserGroup (
686
+
mutationCreateGroup (
687
687
$name: String!
688
688
$tag: String
689
689
$description: String
690
690
) {
691
-
createUserGroup (
691
+
createGroup (
692
692
name: $name
693
693
tag: $tag
694
694
description: $description
@@ -708,16 +708,16 @@ Variables:
708
708
}
709
709
```
710
710
711
-
###### Updating a user group
711
+
###### Updating a group
712
712
713
713
Query:
714
714
```gql
715
-
mutationUpdateUserGroup (
716
-
$userGroupIdOrName: String!
715
+
mutationUpdateGroup (
716
+
$id: String!
717
717
$name: String
718
718
) {
719
-
updateUserGroup (
720
-
userGroupIdOrName: $userGroupIdOrName
719
+
updateGroup (
720
+
id: $id
721
721
name: $name
722
722
) {
723
723
groupId
@@ -729,19 +729,19 @@ mutation UpdateUserGroup (
729
729
Variables:
730
730
```json
731
731
{
732
-
"userGroupIdOrName": "1234-abcd-5678-efgh",
732
+
"id": "1234-abcd-5678-efgh",
733
733
"name": "New Group Name"
734
734
}
735
735
```
736
736
737
-
###### Deleting a user group
737
+
###### Deleting a group
738
738
739
739
Query:
740
740
```gql
741
-
mutationDeleteUserGroup (
741
+
mutationDeleteGroup (
742
742
$id: String!
743
743
) {
744
-
deleteUserGroup (
744
+
deleteGroup (
745
745
id: $id
746
746
)
747
747
}
@@ -1100,7 +1100,7 @@ For all supported arguments and columns, see [the schema](src/types/collection.g
1100
1100
1101
1101
CMR-GraphQL queries an earthdata-varinfo lambda in order to generate collection variable drafts. These generated variable drafts can be returned as part of the Collection type response.
1102
1102
1103
-
`generateVariableDrafts` will return collection generated variable drafts, using the earthdata-varinfo project(<https://github.com/nasa/earthdata-varinfo>)
1103
+
`generateVariableDrafts` will return collection generated variable drafts, using the earthdata-varinfo project(https://github.com/nasa/earthdata-varinfo)
1104
1104
1105
1105
##### Collection Variable Draft Queries
1106
1106
@@ -1180,7 +1180,7 @@ For all supported arguments and columns, see [the schema](src/types/variable.gra
1180
1180
1181
1181
CMR-GraphQL queries an earthdata-varinfo lambda in order to generate and publish collection variable drafts. The resulting variables can be returned as part of the Variable type response.
1182
1182
1183
-
`publishVariableDrafts` will return collection generated variables, using the earthdata-varinfo project(<https://github.com/nasa/earthdata-varinfo>)
1183
+
`publishVariableDrafts` will return collection generated variables, using the earthdata-varinfo project(https://github.com/nasa/earthdata-varinfo)
0 commit comments