Table


The database table is Pipefy's information storage system. It's like bookshelves where you can store and retrieve important information for your company's processes, such as customer, supplier and product registration, for example.

Object most used fields

View all object's fields

field : objectdescription
id: IDThe database table ID
members: [Member]Information about the Repo members
name: StringThe Repo name
organization: OrganizationInformation about the organization
public: BooleanWhether the Repo is public
table_fields: [TableField]Information about the database table fields
table_records: TableRecordConnectionFetches a group of records based on arguments

ID

Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"VXNlci0xMA=="`) or integer (such as `4`) input value will be accepted as an ID.

String

Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.

Boolean

Represents `true` or `false` values.