-
Notifications
You must be signed in to change notification settings - Fork 0
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 #61 from alkem-io/develop
Release 0.8.0
- Loading branch information
Showing
32 changed files
with
2,465 additions
and
2,126 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
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,9 @@ | ||
mutation authorizationPolicyResetOnAccount( | ||
$authorizationResetData: AccountAuthorizationResetInput! | ||
) { | ||
authorizationPolicyResetOnAccount( | ||
authorizationResetData: $authorizationResetData | ||
) { | ||
id | ||
} | ||
} |
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
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 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
4 changes: 2 additions & 2 deletions
4
...ies/spaces-challenges-communities.graphql → ...ries/spaces-subspaces-communities.graphql
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 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,7 @@ | ||
query task($taskId: UUID!) { | ||
task(id: $taskId) { | ||
status | ||
results | ||
errors | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 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 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 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,30 @@ | ||
query digitalTwinDemo( | ||
$spaceNameID: UUID_NAMEID! | ||
){ | ||
space(ID:$spaceNameID) { | ||
id | ||
subspaces { | ||
profile { | ||
displayName | ||
tagline | ||
} | ||
context { | ||
vision | ||
impact | ||
} | ||
collaboration { | ||
callouts { | ||
comments { | ||
messagesCount | ||
} | ||
framing { | ||
profile { | ||
displayName | ||
tagline | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,32 @@ | ||
import { createConfigUsingEnvVars } from '../util/create-config-using-envvars'; | ||
import { AlkemioCliClient } from '../client/AlkemioCliClient'; | ||
import { createLogger } from '../util/create-logger'; | ||
|
||
const main = async () => { | ||
await digitalTwinDemo(); | ||
}; | ||
|
||
export const digitalTwinDemo = async () => { | ||
const logger = createLogger(); | ||
const config = createConfigUsingEnvVars(); | ||
|
||
const alkemioCliClient = new AlkemioCliClient(config, logger); | ||
await alkemioCliClient.initialise(); | ||
await alkemioCliClient.logUser(); | ||
await alkemioCliClient.validateConnection(); | ||
|
||
const spacesQueryResult = await alkemioCliClient.sdkClient.digitalTwinDemo({ | ||
spaceNameID: 'digileefomgeving', | ||
}); | ||
|
||
const space = spacesQueryResult.data.space; | ||
|
||
const subspaces = space.subspaces || []; | ||
|
||
logger.info(`...total number of subspaces: ${subspaces.length}`); | ||
logger.info(`...${JSON.stringify(space)}`); | ||
}; | ||
|
||
main().catch(error => { | ||
console.error(error); | ||
}); |
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,10 @@ | ||
export class SpaceMetaInfo { | ||
Name = ''; | ||
ChallengesCount = 0; | ||
MembersCount = 0; | ||
HostOrgName = ''; | ||
HostOrgOwnerName = ''; | ||
Visibility = ''; | ||
FeatureFlagWhiteboard = false; | ||
FeatureFlagCalloutTemplates = false; | ||
} |
Oops, something went wrong.