-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Show all actions from project view
- Loading branch information
Isaac Mann
authored and
Isaac Mann
committed
Jan 30, 2019
1 parent
a1df664
commit 33f05e5
Showing
12 changed files
with
362 additions
and
61 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
16 changes: 16 additions & 0 deletions
16
libs/feature-workspaces/src/lib/graphql/update-recent-actions.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
mutation SaveRecentAction( | ||
$workspacePath: String! | ||
$projectName: String! | ||
$actionName: String! | ||
$schematicName: String | ||
) { | ||
saveRecentAction( | ||
workspacePath: $workspacePath | ||
projectName: $projectName | ||
actionName: $actionName | ||
schematicName: $schematicName | ||
) { | ||
actionName | ||
schematicName | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
libs/feature-workspaces/src/lib/graphql/workspace-schematics.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
query WorkspaceSchematics($path: String!) { | ||
workspace(path: $path) { | ||
schematicCollections { | ||
name | ||
schematics { | ||
name | ||
description | ||
collection | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -13,6 +13,10 @@ query Workspace($path: String!) { | |
architect { | ||
name | ||
} | ||
recentActions { | ||
actionName | ||
schematicName | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.