Documentation
¶
Index ¶
Constants ¶
View Source
const ( ColumnValueTitleDate = "Date" ColumnValueTitleStatus = "Status" )
View Source
const (
ColumnValueIDLink = "link"
)
View Source
const (
MondayAPIURL = "https://api.monday.com/v2"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) DoGraphQLString ¶ added in v0.2.0
type ColumnValue ¶
type ColumnValueValue ¶
type ColumnValueValue struct { URL string `json:"url,omitempty"` // "title":"Link", "id":"link", Text string `json:"text,omitempty"` // "title":"Link", "id":"link", ChangedAt *time.Time `json:"changed_at"` }
func ParseColumnValueValue ¶
func ParseColumnValueValue(data []byte) (ColumnValueValue, error)
type Item ¶
type Item struct { ID string `json:"id"` Name string `json:"name"` State string `json:"state"` ColumnValues []ColumnValue `json:"column_values"` }
func (*Item) FieldsSimple ¶
func (*Item) GetColumnValue ¶
func (item *Item) GetColumnValue(name string, errorOnDupe bool) (ColumnValue, error)
type Query ¶
func BoardQuery ¶
type QueryRequest ¶
type QueryRequest struct {
Query string `json:"query"`
}
Click to show internal directories.
Click to hide internal directories.