-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1243 from amazeeio/wintercreative-patch-1
Documentation - addSshKey schema change: userId changed to UserInput
- Loading branch information
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,9 +86,12 @@ mutation { | |
# TODO: Fill in the keyType field | ||
# Valid values are either SSH_RSA or SSH_ED25519. | ||
keyType: SSH_RSA | ||
# TODO: Fill in the userId field | ||
# This is the user ID that we noted from the addUser query | ||
userId: 0 | ||
user: { | ||
# TODO: Fill in the userId field | ||
# This is the user ID that we noted from the addUser query | ||
id:"0", | ||
email:"[email protected]" | ||
} | ||
} | ||
) { | ||
id | ||
|
@@ -185,7 +188,7 @@ mutation { | |
# This is the notification name | ||
notificationName: "" | ||
} | ||
) { | ||
) | ||
id | ||
} | ||
} | ||
|
@@ -426,4 +429,4 @@ mutation { | |
} | ||
) | ||
} | ||
``` | ||
``` |