Boards
Boards on Quabbly is where users can input and store record data in an organised way. It's the foundational block for organising work processes. In terms of structure, these boards are made of fields and records.
Where fields (in various types) are represented as columns and Records are represented as rows.
Overall, there are four operations you can perform on Boards and that includes: Create, Read, Update, and Delete.
All of these operations come in two categories of Query and Mutation.
The create, update and delete operations are organised under Mutation while read operation falls under Board Query category.
Board Operations
Generally, the operations you can perform on Quabbly boards include Mutation and Query. Based on GraphQL structure, each of these operations takes Arguments and fields when querying data on the platform.
and all variables involved.
Here's a general structure of Board Mutation
Arguments
Argument | Description |
---|---|
createBoardDTO | This is an object value that allows data input for Board creation. It comes with variable properties such as name !string description string size: BoardSize enum {SMALL, MEDIUM, LARGE} parentBoard: string duplicateInfo from which it accepts data inputs. |
updateBoardDto | Allow you to make changes or modify properties of a board. It comes with the following variables to accept data inputs. id !String name !String description String size: BoardSize enum {SMALL, MEDIUM, LARGE} |
Fields
Board Fields | Description | Field support |
---|---|---|
id string | returns a unique identifier for a board created | |
boardSecret | outputs all extra details about the board like name, description and the board size | BoardSecret has object properties like name : !string description: string boardSize:enum |
createdBy | returns a string value for creator of a board. | |
createdTime | returns time board was created. | |
lastUpdatedTime | returns the latest time properties of a board was updated. | |
disableCreate | returns a boolean true or false | |
parentBoard | outputs |
Allows you to fetch data from your Quabbly account database.
Arguments
Arguments | Description |
---|---|
boardId | This is a board unique identifier which you can obtain as output upon board creation (part of board mutation). |
Fields
📚 Note
Same as the Fields under Board Mutations
Updated about 3 years ago