Skip to content

Commit

Permalink
Merge pull request #3876 from alkem-io/develop
Browse files Browse the repository at this point in the history
Release: Subspaces
  • Loading branch information
valentinyanakiev authored Apr 30, 2024
2 parents 877af01 + b88c217 commit af8fff1
Show file tree
Hide file tree
Showing 360 changed files with 6,891 additions and 10,669 deletions.
20 changes: 20 additions & 0 deletions graphql-samples/mutations/create/create-account
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"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Variables:
"tags": [],
"type": "WHITEBOARD_RT",
"state": "OPEN",
"groupName": "HOME_1",
"groupName": "HOME",
"visibility": "PUBLISHED",
"sendNotification": false
}
Expand Down
44 changes: 0 additions & 44 deletions graphql-samples/mutations/create/create-challenge

This file was deleted.

44 changes: 0 additions & 44 deletions graphql-samples/mutations/create/create-child-challenge

This file was deleted.

43 changes: 0 additions & 43 deletions graphql-samples/mutations/create/create-opportunity

This file was deleted.

17 changes: 0 additions & 17 deletions graphql-samples/mutations/create/create-space

This file was deleted.

27 changes: 27 additions & 0 deletions graphql-samples/mutations/create/create-subspace
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",

}
}
}
18 changes: 0 additions & 18 deletions graphql-samples/mutations/update/event-on-challenge

This file was deleted.

18 changes: 0 additions & 18 deletions graphql-samples/mutations/update/event-on-opportunity

This file was deleted.

16 changes: 16 additions & 0 deletions graphql-samples/mutations/update/update-account-platform-settings
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"
}
}
30 changes: 0 additions & 30 deletions graphql-samples/mutations/update/update-challenge

This file was deleted.

15 changes: 0 additions & 15 deletions graphql-samples/mutations/update/update-opportunity

This file was deleted.

15 changes: 0 additions & 15 deletions graphql-samples/mutations/update/update-space-platform-settings

This file was deleted.

Loading

0 comments on commit af8fff1

Please sign in to comment.