Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/graphql/types/flow_type_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ class FlowTypeType < Types::BaseObject
field :documentations, [Types::TranslationType], null: true,
description: 'Documentations of the flow type'
field :editable, Boolean, null: false, description: 'Editable status of the flow type'
field :flow_type_settings, [Types::FlowTypeSettingType], null: false,
description: 'Flow type settings of the flow type'
field :flow_type_settings, Types::FlowTypeSettingType.connection_type,
null: false,
description: 'Flow type settings of the flow type'
field :identifier, String, null: false, description: 'Identifier of the flow type'
field :names, [Types::TranslationType], null: true, description: 'Names of the flow type'
field :runtime, Types::RuntimeType, null: false,
Expand Down
2 changes: 1 addition & 1 deletion docs/graphql/object/flowtype.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Represents a flow type
| `displayMessages` | [`[Translation!]`](../object/translation.md) | Display message of the function |
| `documentations` | [`[Translation!]`](../object/translation.md) | Documentations of the flow type |
| `editable` | [`Boolean!`](../scalar/boolean.md) | Editable status of the flow type |
| `flowTypeSettings` | [`[FlowTypeSetting!]!`](../object/flowtypesetting.md) | Flow type settings of the flow type |
| `flowTypeSettings` | [`FlowTypeSettingConnection!`](../object/flowtypesettingconnection.md) | Flow type settings of the flow type |
| `id` | [`FlowTypeID!`](../scalar/flowtypeid.md) | Global ID of this FlowType |
| `identifier` | [`String!`](../scalar/string.md) | Identifier of the flow type |
| `linkedDataTypes` | [`DataTypeConnection!`](../object/datatypeconnection.md) | The data types that are referenced in this flow type |
Expand Down
14 changes: 14 additions & 0 deletions docs/graphql/object/flowtypesettingconnection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: FlowTypeSettingConnection
---

The connection type for FlowTypeSetting.

## Fields without arguments

| Name | Type | Description |
|------|------|-------------|
| `count` | [`Int!`](../scalar/int.md) | Total count of collection. |
| `edges` | [`[FlowTypeSettingEdge]`](../object/flowtypesettingedge.md) | A list of edges. |
| `nodes` | [`[FlowTypeSetting]`](../object/flowtypesetting.md) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](../object/pageinfo.md) | Information to aid in pagination. |
12 changes: 12 additions & 0 deletions docs/graphql/object/flowtypesettingedge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: FlowTypeSettingEdge
---

An edge in a connection.

## Fields without arguments

| Name | Type | Description |
|------|------|-------------|
| `cursor` | [`String!`](../scalar/string.md) | A cursor for use in pagination. |
| `node` | [`FlowTypeSetting`](../object/flowtypesetting.md) | The item at the end of the edge. |