-
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 (#490)
* feat: Show all actions from project view * fix lint errors * chore: Fix lint error * fix: e2e test
- Loading branch information
1 parent
202261b
commit 5e09c0e
Showing
14 changed files
with
427 additions
and
65 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.