mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-13 09:52:46 +00:00
* Adding Properties, Documentation tabs, & supporting mutations Co-authored-by: John Joyce <john@acryl.io>
11 lines
215 B
GraphQL
11 lines
215 B
GraphQL
mutation login($username: String!, $password: String!) {
|
|
logIn(username: $username, password: $password) {
|
|
urn
|
|
username
|
|
info {
|
|
displayName
|
|
email
|
|
}
|
|
}
|
|
}
|