JDBC Driver for Monday

Build 23.0.8839

BoardUsers

Get a board's subscribers.

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.

  • BoardId supports the '=','IN' comparison operators.
  • Kind supports the '=' comparison operator.
For example, the following queries are processed server side:
SELECT * FROM BoardUsers WHERE BoardId='5525287714'
SELECT * FROM BoardUsers WHERE Kind='owner'

INSERT

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

The following inputs can be used in INSERT statements:

Id, BoardId, Kind

INSERT INTO BoardUsers (Id,BoardId,Kind) VALUES ('51688059','5546871560','subscriber')

DELETE

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

You can delete entries by specifying the Id and BoardId.

DELETE FROM BoardUsers WHERE Id='51688059' AND BoardId='5546871560'

Columns

Name Type ReadOnly References Description
Id [KEY] String False

Users.Id

The board owner's unique identifier.

BoardId [KEY] String False

Boards.Id

The unique identifier of the board.

Kind String False

The user's role: subscriber or owner. All owners are by default also subscribers. This column can be used to filter non-owners.

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