fix: only show apps with actions in action step
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const GET_APPS = gql`
|
||||
query GetApps($name: String, $onlyWithTriggers: Boolean) {
|
||||
getApps(name: $name, onlyWithTriggers: $onlyWithTriggers) {
|
||||
query GetApps($name: String, $onlyWithTriggers: Boolean, $onlyWithActions: Boolean) {
|
||||
getApps(name: $name, onlyWithTriggers: $onlyWithTriggers, onlyWithActions: $onlyWithActions) {
|
||||
name
|
||||
key
|
||||
iconUrl
|
||||
|
Reference in New Issue
Block a user