OBJECT

FlowTemplate

link GraphQL Schema definition

1type FlowTemplate {
2
3id: ID!
4
5title: String
6
7subtitle: String
8
9description: String
10
11flow: String
12
13package: String
14
15image: String
16
17screenshots: [String]
18
19categories: [String]
20
21organizationId: String
22
23tags: [String]
24
25author: String
26
27public: Boolean
28
29learnmorelink: String
30
31logo: String
32
33created: DateTime
34
35modified: DateTime
36
37}