-
Notifications
You must be signed in to change notification settings - Fork 4
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 #3876 from alkem-io/develop
Release: Subspaces
- Loading branch information
Showing
360 changed files
with
6,891 additions
and
10,669 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
mutation createAccount($accountData: CreateAccountInput!) { | ||
createAccount(accountData: $accountData) { | ||
id | ||
spaceID | ||
} | ||
} | ||
|
||
|
||
{ | ||
"accountData": | ||
{ | ||
"hostID": "Eco1Host", | ||
"spaceData": { | ||
"nameID": "eco1", | ||
"profileData": { | ||
"displayName": "Test space2" | ||
} | ||
} | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
mutation createSubspace($subspaceData: CreateSubspaceInput!) { | ||
createSubspace(subspaceData: $subspaceData) { | ||
id, | ||
nameID | ||
} | ||
} | ||
|
||
query variables: | ||
{ | ||
"subspaceData": | ||
{ | ||
"spaceID": "uuid", | ||
"nameID": "balance-grid", | ||
"innovationFlowTemplate": "EXTENDED", | ||
"profileData": { | ||
"displayName": "Balance the grid", | ||
"tagline": "How might we incentivize consumers to communicate energy demand and production to allow all stakeholders to balance the grid?", | ||
"description": "Our power system is becoming increasingly more decentralized and complex. " | ||
}, | ||
"context": { | ||
"vision": "Enable the entire energy sector to transition from an ego-system to an eco-system, .", | ||
"impact": "The power grid is one of the most sophisticated infrastructures ever built. By building the energy flexibility .", | ||
"who": "Vattenfall is inviting energy specialists throughout the entire sector, from DSOs and TSOs to solar power solution providers, to work with the teams to create the best solutions", | ||
|
||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
graphql-samples/mutations/update/update-account-platform-settings
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
mutation updateAccountPlatformSettings($updateData: UpdateAccountPlatformSettingsInput!) { | ||
updateAccountPlatformSettings(updateData: $updateData) { | ||
id | ||
} | ||
} | ||
|
||
Variables: | ||
{ | ||
"updateData": { | ||
"accountID": "uuid", | ||
"license": { | ||
"visibility": "ARCHIVED" | ||
}, | ||
"hostID": "uuid_nameid" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
graphql-samples/mutations/update/update-space-platform-settings
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.