JDBC Driver for Monday

Build 23.0.8839

Groups

Get a board's visible groups.

View-Specific Information

SELECT

The 本製品 uses the Monday API to process some of the filters. The 本製品 processes other filters client-side within the 本製品. You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any search criteria that refers to other columns will cause inconsistent data.

  • Id supports the '=','IN' comparison operators.
  • BoardId supports the '=','IN' comparison operators.
For example, the following queries are processed server side:
SELECT * FROM Groups WHERE Id = 'topics'
SELECT * FROM Groups WHERE Id IN ('topics', 'group_title')
SELECT * FROM Groups WHERE BoardId IN ('2182296646', '21822966')
SELECT * FROM Groups WHERE BoardId = '2182296646' AND Id = 'topics'

INSERT

INSERT statements are mapped to the 'create_group' GraphQL mutation.

The following inputs can be used in INSERT statements:

BoardId, Title, RelativeTo, PositionRelativeMethod

INSERT INTO Groups (BoardId,Title,RelativeTo,PositionRelativeMethod) VALUES ('5525287714','NewGroup','testgroup','after_at')

UPDATE

UPDATE statements are mapped to the 'update_group' and 'archive_group' GraphQL mutations.

The following inputs can be used in UPDATE statements (note that due to API limitations only one column's value can be updated per statement):

Id, BoardId, Archived, Color, Title, RelativePositionAfter, RelativePositionBefore

UPDATE Groups SET Color='lime-green' WHERE BoardId='5525287714' AND Id='newgroup'
UPDATE Groups SET Archived='true' WHERE BoardId='5525287714' AND Id='newgroup'

DELETE

DELETE statements are mapped to the 'delete_group' GraphQL mutation.

You can delete entries by specifying the Id and BoardId.

DELETE FROM Groups WHERE BoardId='5525287714' AND Id='testgroup'

Columns

Name Type ReadOnly References Description
Id [KEY] String False

The group's unique identifier.

BoardId [KEY] String False

Boards.Id

The unique identifier of the board.

Archived Bool False

Whether or not the group is archived.

Color String False

The group's color.

Deleted Bool False

Whether or not the group is deleted.

Position String False

The group's position in the board.

Title String False

The group's title.

Pseudo-Columns

SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。

Name Type Description
RelativeTo String

The group to set the position next to.

PositionRelativeMethod String

The position relative method to another group (before_at / after_at).

RelativePositionAfter String

The group's relative position after another group in the board.

RelativePositionBefore String

The group's relative position before another group in the board.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839