jobs

package
v1.0.0-preview2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 23, 2024 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DataPullJob

type DataPullJob struct {
	// contains filtered or unexported fields
}

func NewDataPullJob

func NewDataPullJob(schedule string, queries db.Querier, projects []models.JobConfigItem) (*DataPullJob, error)

func (*DataPullJob) Start

func (c *DataPullJob) Start()

func (*DataPullJob) Stop

func (c *DataPullJob) Stop()

type ProjectFields

type ProjectFields struct {
	// The Node ID of the ProjectV2 object
	Id string `json:"id"`
	// The project's name.
	Title string `json:"title"`
	// A field of the project
	Status ProjectFieldsStatusProjectV2FieldConfiguration `json:"-"`
	// A field of the project
	Iteration ProjectFieldsIterationProjectV2FieldConfiguration `json:"-"`
	// List of items in the project
	Items ProjectFieldsItemsProjectV2ItemConnection `json:"items"`
}

ProjectFields includes the GraphQL fields of ProjectV2 requested by the fragment ProjectFields. The GraphQL type's documentation follows.

New projects that manage issues, pull requests and drafts using tables and boards.

func (*ProjectFields) GetId

func (v *ProjectFields) GetId() string

GetId returns ProjectFields.Id, and is useful for accessing the field via an interface.

func (*ProjectFields) GetItems

GetItems returns ProjectFields.Items, and is useful for accessing the field via an interface.

func (*ProjectFields) GetIteration

GetIteration returns ProjectFields.Iteration, and is useful for accessing the field via an interface.

func (*ProjectFields) GetStatus

GetStatus returns ProjectFields.Status, and is useful for accessing the field via an interface.

func (*ProjectFields) GetTitle

func (v *ProjectFields) GetTitle() string

GetTitle returns ProjectFields.Title, and is useful for accessing the field via an interface.

func (*ProjectFields) MarshalJSON

func (v *ProjectFields) MarshalJSON() ([]byte, error)

func (*ProjectFields) UnmarshalJSON

func (v *ProjectFields) UnmarshalJSON(b []byte) error

type ProjectFieldsItemsProjectV2ItemConnection

type ProjectFieldsItemsProjectV2ItemConnection struct {
	// Information to aid in pagination.
	PageInfo ProjectFieldsItemsProjectV2ItemConnectionPageInfo `json:"pageInfo"`
	// A list of nodes.
	Nodes []ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item `json:"nodes"`
}

ProjectFieldsItemsProjectV2ItemConnection includes the requested fields of the GraphQL type ProjectV2ItemConnection. The GraphQL type's documentation follows.

The connection type for ProjectV2Item.

func (*ProjectFieldsItemsProjectV2ItemConnection) GetNodes

GetNodes returns ProjectFieldsItemsProjectV2ItemConnection.Nodes, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnection) GetPageInfo

GetPageInfo returns ProjectFieldsItemsProjectV2ItemConnection.PageInfo, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item struct {
	// The Node ID of the ProjectV2Item object
	Id string `json:"id"`
	// The field value of the first project field which matches the 'name' argument that is set on the item.
	Status ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldValue `json:"-"`
	// The field value of the first project field which matches the 'name' argument that is set on the item.
	Effort ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldValue `json:"-"`
	// The field value of the first project field which matches the 'name' argument that is set on the item.
	Remaining ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldValue `json:"-"`
	// The field value of the first project field which matches the 'name' argument that is set on the item.
	Iteration ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldValue `json:"-"`
	// The content of the referenced draft issue, issue, or pull request
	Content ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContent `json:"-"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item includes the requested fields of the GraphQL type ProjectV2Item. The GraphQL type's documentation follows.

An item within a Project.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetContent

GetContent returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Content, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetEffort

GetEffort returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Effort, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetId

GetId returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Id, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetIteration

GetIteration returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Iteration, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetRemaining

GetRemaining returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Remaining, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) GetStatus

GetStatus returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item.Status, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) MarshalJSON

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2Item) UnmarshalJSON

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContent

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContent interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContent includes the requested fields of the GraphQL interface ProjectV2ItemContent.

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContent is implemented by the following types: ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest The GraphQL type's documentation follows.

Types that can be inside Project Items.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue includes the requested fields of the GraphQL type DraftIssue. The GraphQL type's documentation follows.

A draft issue within a project.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentDraftIssue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue struct {
	Typename string `json:"__typename"`
	// Identifies the issue title.
	Title string `json:"title"`
	// Identifies the date and time when the object was created.
	CreatedAt time.Time `json:"createdAt"`
	// Identifies the date and time when the object was closed.
	ClosedAt time.Time `json:"closedAt"`
	// A list of labels associated with the object.
	Labels ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection `json:"labels"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue includes the requested fields of the GraphQL type Issue. The GraphQL type's documentation follows.

An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue) GetClosedAt

GetClosedAt returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue.ClosedAt, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue) GetCreatedAt

GetCreatedAt returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue.CreatedAt, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue) GetLabels

GetLabels returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue.Labels, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue) GetTitle

GetTitle returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue.Title, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection struct {
	// A list of nodes.
	Nodes []ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel `json:"nodes"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection includes the requested fields of the GraphQL type LabelConnection. The GraphQL type's documentation follows.

The connection type for Label.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection) GetNodes

GetNodes returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnection.Nodes, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel struct {
	// Identifies the label name.
	Name string `json:"name"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel includes the requested fields of the GraphQL type Label. The GraphQL type's documentation follows.

A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel) GetName

GetName returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentIssueLabelsLabelConnectionNodesLabel.Name, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest includes the requested fields of the GraphQL type PullRequest. The GraphQL type's documentation follows.

A repository pull request.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemContentPullRequest.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue includes the requested fields of the GraphQL type ProjectV2ItemFieldDateValue. The GraphQL type's documentation follows.

The value of a date field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue includes the requested fields of the GraphQL type ProjectV2ItemFieldIterationValue. The GraphQL type's documentation follows.

The value of an iteration field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue includes the requested fields of the GraphQL type ProjectV2ItemFieldLabelValue. The GraphQL type's documentation follows.

The value of the labels field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue includes the requested fields of the GraphQL type ProjectV2ItemFieldMilestoneValue. The GraphQL type's documentation follows.

The value of a milestone field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue struct {
	Typename string `json:"__typename"`
	// Number as a float(8)
	Number float64 `json:"number"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue includes the requested fields of the GraphQL type ProjectV2ItemFieldNumberValue. The GraphQL type's documentation follows.

The value of a number field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue) GetNumber

GetNumber returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue.Number, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue includes the requested fields of the GraphQL type ProjectV2ItemFieldPullRequestValue. The GraphQL type's documentation follows.

The value of a pull request field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue includes the requested fields of the GraphQL type ProjectV2ItemFieldRepositoryValue. The GraphQL type's documentation follows.

The value of a repository field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue includes the requested fields of the GraphQL type ProjectV2ItemFieldReviewerValue. The GraphQL type's documentation follows.

The value of a reviewers field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue includes the requested fields of the GraphQL type ProjectV2ItemFieldSingleSelectValue. The GraphQL type's documentation follows.

The value of a single select field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue includes the requested fields of the GraphQL type ProjectV2ItemFieldTextValue. The GraphQL type's documentation follows.

The value of a text field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue includes the requested fields of the GraphQL type ProjectV2ItemFieldUserValue. The GraphQL type's documentation follows.

The value of a user field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldValue interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldValue includes the requested fields of the GraphQL interface ProjectV2ItemFieldValue.

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldValue is implemented by the following types: ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldDateValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldIterationValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldLabelValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldMilestoneValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldNumberValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldPullRequestValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldRepositoryValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldReviewerValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldSingleSelectValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldTextValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemEffortProjectV2ItemFieldUserValue The GraphQL type's documentation follows.

Project field values

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue includes the requested fields of the GraphQL type ProjectV2ItemFieldDateValue. The GraphQL type's documentation follows.

The value of a date field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue struct {
	Typename string `json:"__typename"`
	// The ID of the iteration.
	IterationId string `json:"iterationId"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue includes the requested fields of the GraphQL type ProjectV2ItemFieldIterationValue. The GraphQL type's documentation follows.

The value of an iteration field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue) GetIterationId

GetIterationId returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue.IterationId, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue includes the requested fields of the GraphQL type ProjectV2ItemFieldLabelValue. The GraphQL type's documentation follows.

The value of the labels field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue includes the requested fields of the GraphQL type ProjectV2ItemFieldMilestoneValue. The GraphQL type's documentation follows.

The value of a milestone field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue includes the requested fields of the GraphQL type ProjectV2ItemFieldNumberValue. The GraphQL type's documentation follows.

The value of a number field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue includes the requested fields of the GraphQL type ProjectV2ItemFieldPullRequestValue. The GraphQL type's documentation follows.

The value of a pull request field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue includes the requested fields of the GraphQL type ProjectV2ItemFieldRepositoryValue. The GraphQL type's documentation follows.

The value of a repository field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue includes the requested fields of the GraphQL type ProjectV2ItemFieldReviewerValue. The GraphQL type's documentation follows.

The value of a reviewers field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue includes the requested fields of the GraphQL type ProjectV2ItemFieldSingleSelectValue. The GraphQL type's documentation follows.

The value of a single select field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue includes the requested fields of the GraphQL type ProjectV2ItemFieldTextValue. The GraphQL type's documentation follows.

The value of a text field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue includes the requested fields of the GraphQL type ProjectV2ItemFieldUserValue. The GraphQL type's documentation follows.

The value of a user field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldValue interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldValue includes the requested fields of the GraphQL interface ProjectV2ItemFieldValue.

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldValue is implemented by the following types: ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldDateValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldIterationValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldLabelValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldMilestoneValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldNumberValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldPullRequestValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldRepositoryValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldReviewerValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldSingleSelectValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldTextValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemIterationProjectV2ItemFieldUserValue The GraphQL type's documentation follows.

Project field values

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue includes the requested fields of the GraphQL type ProjectV2ItemFieldDateValue. The GraphQL type's documentation follows.

The value of a date field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue includes the requested fields of the GraphQL type ProjectV2ItemFieldIterationValue. The GraphQL type's documentation follows.

The value of an iteration field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue includes the requested fields of the GraphQL type ProjectV2ItemFieldLabelValue. The GraphQL type's documentation follows.

The value of the labels field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue includes the requested fields of the GraphQL type ProjectV2ItemFieldMilestoneValue. The GraphQL type's documentation follows.

The value of a milestone field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue struct {
	Typename string `json:"__typename"`
	// Number as a float(8)
	Number float64 `json:"number"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue includes the requested fields of the GraphQL type ProjectV2ItemFieldNumberValue. The GraphQL type's documentation follows.

The value of a number field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue) GetNumber

GetNumber returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue.Number, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue includes the requested fields of the GraphQL type ProjectV2ItemFieldPullRequestValue. The GraphQL type's documentation follows.

The value of a pull request field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue includes the requested fields of the GraphQL type ProjectV2ItemFieldRepositoryValue. The GraphQL type's documentation follows.

The value of a repository field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue includes the requested fields of the GraphQL type ProjectV2ItemFieldReviewerValue. The GraphQL type's documentation follows.

The value of a reviewers field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue includes the requested fields of the GraphQL type ProjectV2ItemFieldSingleSelectValue. The GraphQL type's documentation follows.

The value of a single select field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue includes the requested fields of the GraphQL type ProjectV2ItemFieldTextValue. The GraphQL type's documentation follows.

The value of a text field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue includes the requested fields of the GraphQL type ProjectV2ItemFieldUserValue. The GraphQL type's documentation follows.

The value of a user field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldValue interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldValue includes the requested fields of the GraphQL interface ProjectV2ItemFieldValue.

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldValue is implemented by the following types: ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldDateValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldIterationValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldLabelValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldMilestoneValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldNumberValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldPullRequestValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldRepositoryValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldReviewerValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldSingleSelectValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldTextValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemRemainingProjectV2ItemFieldUserValue The GraphQL type's documentation follows.

Project field values

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue includes the requested fields of the GraphQL type ProjectV2ItemFieldDateValue. The GraphQL type's documentation follows.

The value of a date field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue includes the requested fields of the GraphQL type ProjectV2ItemFieldIterationValue. The GraphQL type's documentation follows.

The value of an iteration field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue includes the requested fields of the GraphQL type ProjectV2ItemFieldLabelValue. The GraphQL type's documentation follows.

The value of the labels field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue includes the requested fields of the GraphQL type ProjectV2ItemFieldMilestoneValue. The GraphQL type's documentation follows.

The value of a milestone field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue includes the requested fields of the GraphQL type ProjectV2ItemFieldNumberValue. The GraphQL type's documentation follows.

The value of a number field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue includes the requested fields of the GraphQL type ProjectV2ItemFieldPullRequestValue. The GraphQL type's documentation follows.

The value of a pull request field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue includes the requested fields of the GraphQL type ProjectV2ItemFieldRepositoryValue. The GraphQL type's documentation follows.

The value of a repository field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue includes the requested fields of the GraphQL type ProjectV2ItemFieldReviewerValue. The GraphQL type's documentation follows.

The value of a reviewers field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue struct {
	Typename string `json:"__typename"`
	// The name of the selected single select option.
	Name string `json:"name"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue includes the requested fields of the GraphQL type ProjectV2ItemFieldSingleSelectValue. The GraphQL type's documentation follows.

The value of a single select field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue) GetName

GetName returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue.Name, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue includes the requested fields of the GraphQL type ProjectV2ItemFieldTextValue. The GraphQL type's documentation follows.

The value of a text field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue struct {
	Typename string `json:"__typename"`
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue includes the requested fields of the GraphQL type ProjectV2ItemFieldUserValue. The GraphQL type's documentation follows.

The value of a user field in a Project item.

func (*ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue) GetTypename

GetTypename returns ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldValue

type ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldValue interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldValue includes the requested fields of the GraphQL interface ProjectV2ItemFieldValue.

ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldValue is implemented by the following types: ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldDateValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldIterationValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldLabelValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldMilestoneValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldNumberValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldPullRequestValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldRepositoryValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldReviewerValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldSingleSelectValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldTextValue ProjectFieldsItemsProjectV2ItemConnectionNodesProjectV2ItemStatusProjectV2ItemFieldUserValue The GraphQL type's documentation follows.

Project field values

type ProjectFieldsItemsProjectV2ItemConnectionPageInfo

type ProjectFieldsItemsProjectV2ItemConnectionPageInfo struct {
	// When paginating forwards, are there more items?
	HasNextPage bool `json:"hasNextPage"`
	// When paginating forwards, the cursor to continue.
	EndCursor string `json:"endCursor"`
}

ProjectFieldsItemsProjectV2ItemConnectionPageInfo includes the requested fields of the GraphQL type PageInfo. The GraphQL type's documentation follows.

Information about pagination in a connection.

func (*ProjectFieldsItemsProjectV2ItemConnectionPageInfo) GetEndCursor

GetEndCursor returns ProjectFieldsItemsProjectV2ItemConnectionPageInfo.EndCursor, and is useful for accessing the field via an interface.

func (*ProjectFieldsItemsProjectV2ItemConnectionPageInfo) GetHasNextPage

GetHasNextPage returns ProjectFieldsItemsProjectV2ItemConnectionPageInfo.HasNextPage, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2Field

type ProjectFieldsIterationProjectV2Field struct {
	Typename string `json:"__typename"`
}

ProjectFieldsIterationProjectV2Field includes the requested fields of the GraphQL type ProjectV2Field. The GraphQL type's documentation follows.

A field inside a project.

func (*ProjectFieldsIterationProjectV2Field) GetTypename

GetTypename returns ProjectFieldsIterationProjectV2Field.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2FieldConfiguration

type ProjectFieldsIterationProjectV2FieldConfiguration interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsIterationProjectV2FieldConfiguration includes the requested fields of the GraphQL interface ProjectV2FieldConfiguration.

ProjectFieldsIterationProjectV2FieldConfiguration is implemented by the following types: ProjectFieldsIterationProjectV2Field ProjectFieldsIterationProjectV2IterationField ProjectFieldsIterationProjectV2SingleSelectField The GraphQL type's documentation follows.

Configurations for project fields.

type ProjectFieldsIterationProjectV2IterationField

type ProjectFieldsIterationProjectV2IterationField struct {
	Typename string `json:"__typename"`
	// The project field's name.
	Name string `json:"name"`
	// Iteration configuration settings
	Configuration ProjectFieldsIterationProjectV2IterationFieldConfiguration `json:"configuration"`
}

ProjectFieldsIterationProjectV2IterationField includes the requested fields of the GraphQL type ProjectV2IterationField. The GraphQL type's documentation follows.

An iteration field inside a project.

func (*ProjectFieldsIterationProjectV2IterationField) GetConfiguration

GetConfiguration returns ProjectFieldsIterationProjectV2IterationField.Configuration, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationField) GetName

GetName returns ProjectFieldsIterationProjectV2IterationField.Name, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationField) GetTypename

GetTypename returns ProjectFieldsIterationProjectV2IterationField.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2IterationFieldConfiguration

type ProjectFieldsIterationProjectV2IterationFieldConfiguration struct {
	// The iteration's iterations
	Iterations []ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration `json:"iterations"`
	// The iteration's completed iterations
	CompletedIterations []ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration `json:"completedIterations"`
}

ProjectFieldsIterationProjectV2IterationFieldConfiguration includes the requested fields of the GraphQL type ProjectV2IterationFieldConfiguration. The GraphQL type's documentation follows.

Iteration field configuration for a project.

func (*ProjectFieldsIterationProjectV2IterationFieldConfiguration) GetCompletedIterations

GetCompletedIterations returns ProjectFieldsIterationProjectV2IterationFieldConfiguration.CompletedIterations, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfiguration) GetIterations

GetIterations returns ProjectFieldsIterationProjectV2IterationFieldConfiguration.Iterations, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration

type ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration struct {
	// The iteration's ID.
	Id string `json:"id"`
	// The iteration's title.
	Title string `json:"title"`
	// The iteration's start date
	StartDate string `json:"startDate"`
	// The iteration's duration in days
	Duration int `json:"duration"`
}

ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration includes the requested fields of the GraphQL type ProjectV2IterationFieldIteration. The GraphQL type's documentation follows.

Iteration field iteration settings for a project.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration) GetDuration

GetDuration returns ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration.Duration, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration) GetId

GetId returns ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration.Id, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration) GetStartDate

GetStartDate returns ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration.StartDate, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration) GetTitle

GetTitle returns ProjectFieldsIterationProjectV2IterationFieldConfigurationCompletedIterationsProjectV2IterationFieldIteration.Title, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration

type ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration struct {
	// The iteration's ID.
	Id string `json:"id"`
	// The iteration's title.
	Title string `json:"title"`
	// The iteration's start date
	StartDate string `json:"startDate"`
	// The iteration's duration in days
	Duration int `json:"duration"`
}

ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration includes the requested fields of the GraphQL type ProjectV2IterationFieldIteration. The GraphQL type's documentation follows.

Iteration field iteration settings for a project.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration) GetDuration

GetDuration returns ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration.Duration, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration) GetId

GetId returns ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration.Id, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration) GetStartDate

GetStartDate returns ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration.StartDate, and is useful for accessing the field via an interface.

func (*ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration) GetTitle

GetTitle returns ProjectFieldsIterationProjectV2IterationFieldConfigurationIterationsProjectV2IterationFieldIteration.Title, and is useful for accessing the field via an interface.

type ProjectFieldsIterationProjectV2SingleSelectField

type ProjectFieldsIterationProjectV2SingleSelectField struct {
	Typename string `json:"__typename"`
}

ProjectFieldsIterationProjectV2SingleSelectField includes the requested fields of the GraphQL type ProjectV2SingleSelectField. The GraphQL type's documentation follows.

A single select field inside a project.

func (*ProjectFieldsIterationProjectV2SingleSelectField) GetTypename

GetTypename returns ProjectFieldsIterationProjectV2SingleSelectField.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsStatusProjectV2Field

type ProjectFieldsStatusProjectV2Field struct {
	Typename string `json:"__typename"`
}

ProjectFieldsStatusProjectV2Field includes the requested fields of the GraphQL type ProjectV2Field. The GraphQL type's documentation follows.

A field inside a project.

func (*ProjectFieldsStatusProjectV2Field) GetTypename

func (v *ProjectFieldsStatusProjectV2Field) GetTypename() string

GetTypename returns ProjectFieldsStatusProjectV2Field.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsStatusProjectV2FieldConfiguration

type ProjectFieldsStatusProjectV2FieldConfiguration interface {

	// GetTypename returns the receiver's concrete GraphQL type-name (see interface doc for possible values).
	GetTypename() string
	// contains filtered or unexported methods
}

ProjectFieldsStatusProjectV2FieldConfiguration includes the requested fields of the GraphQL interface ProjectV2FieldConfiguration.

ProjectFieldsStatusProjectV2FieldConfiguration is implemented by the following types: ProjectFieldsStatusProjectV2Field ProjectFieldsStatusProjectV2IterationField ProjectFieldsStatusProjectV2SingleSelectField The GraphQL type's documentation follows.

Configurations for project fields.

type ProjectFieldsStatusProjectV2IterationField

type ProjectFieldsStatusProjectV2IterationField struct {
	Typename string `json:"__typename"`
}

ProjectFieldsStatusProjectV2IterationField includes the requested fields of the GraphQL type ProjectV2IterationField. The GraphQL type's documentation follows.

An iteration field inside a project.

func (*ProjectFieldsStatusProjectV2IterationField) GetTypename

GetTypename returns ProjectFieldsStatusProjectV2IterationField.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsStatusProjectV2SingleSelectField

type ProjectFieldsStatusProjectV2SingleSelectField struct {
	Typename string `json:"__typename"`
	// The project field's name.
	Name string `json:"name"`
	// Options for the single select field
	Options []ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption `json:"options"`
}

ProjectFieldsStatusProjectV2SingleSelectField includes the requested fields of the GraphQL type ProjectV2SingleSelectField. The GraphQL type's documentation follows.

A single select field inside a project.

func (*ProjectFieldsStatusProjectV2SingleSelectField) GetName

GetName returns ProjectFieldsStatusProjectV2SingleSelectField.Name, and is useful for accessing the field via an interface.

func (*ProjectFieldsStatusProjectV2SingleSelectField) GetOptions

GetOptions returns ProjectFieldsStatusProjectV2SingleSelectField.Options, and is useful for accessing the field via an interface.

func (*ProjectFieldsStatusProjectV2SingleSelectField) GetTypename

GetTypename returns ProjectFieldsStatusProjectV2SingleSelectField.Typename, and is useful for accessing the field via an interface.

type ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption

type ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption struct {
	// The option's name.
	Name string `json:"name"`
}

ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption includes the requested fields of the GraphQL type ProjectV2SingleSelectFieldOption. The GraphQL type's documentation follows.

Single select field option for a configuration for a project.

func (*ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption) GetName

GetName returns ProjectFieldsStatusProjectV2SingleSelectFieldOptionsProjectV2SingleSelectFieldOption.Name, and is useful for accessing the field via an interface.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL