fix: do not update step on initial render
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
bb3183959e
commit
3925de13a7
@@ -3,25 +3,71 @@ import { gql } from '@apollo/client';
|
||||
export const GET_APPS = gql`
|
||||
query GetApps($name: String) {
|
||||
getApps(name: $name) {
|
||||
key
|
||||
name
|
||||
key
|
||||
iconUrl
|
||||
docUrl
|
||||
primaryColor
|
||||
connectionCount
|
||||
fields {
|
||||
key
|
||||
label
|
||||
type
|
||||
required
|
||||
readOnly
|
||||
value
|
||||
placeholder
|
||||
description
|
||||
docUrl
|
||||
clickToCopy
|
||||
}
|
||||
authenticationSteps {
|
||||
step
|
||||
type
|
||||
name
|
||||
arguments {
|
||||
name
|
||||
value
|
||||
type
|
||||
properties {
|
||||
name
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
reconnectionSteps {
|
||||
step
|
||||
type
|
||||
name
|
||||
arguments {
|
||||
name
|
||||
value
|
||||
type
|
||||
properties {
|
||||
name
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
connections {
|
||||
id
|
||||
}
|
||||
triggers {
|
||||
name
|
||||
key
|
||||
description
|
||||
subSteps {
|
||||
name
|
||||
}
|
||||
}
|
||||
actions {
|
||||
name
|
||||
key
|
||||
description
|
||||
subSteps {
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user