`createAsUser` is missing from types for `IssueCreateInput`
See original GitHub issueThe GraphQL API accepts an optional createAsUser
field for the input of issueCreate
. However, the SDK is missing this field from it’s IssueCreateInput
type:
export declare type IssueCreateInput = {
/** The identifier of the user to assign the issue to. */
assigneeId?: Maybe<Scalars["String"]>;
/** The position of the issue in its column on the board view. */
boardOrder?: Maybe<Scalars["Float"]>;
/** The cycle associated with the issue. */
cycleId?: Maybe<Scalars["String"]>;
/** The issue description in markdown format. */
description?: Maybe<Scalars["String"]>;
/** The issue description as a Prosemirror document. */
descriptionData?: Maybe<Scalars["JSON"]>;
/** The date at which the issue is due. */
dueDate?: Maybe<Scalars["TimelessDate"]>;
/** The estimated complexity of the issue. */
estimate?: Maybe<Scalars["Int"]>;
/** The identifier. If none is provided, the backend will generate one. */
id?: Maybe<Scalars["String"]>;
/** The identifiers of the issue labels associated with this ticket. */
labelIds?: Maybe<Array<Scalars["String"]>>;
/** The identifier of the parent issue. */
parentId?: Maybe<Scalars["String"]>;
/** The priority of the issue. */
priority?: Maybe<Scalars["Int"]>;
/** The project associated with the issue. */
projectId?: Maybe<Scalars["String"]>;
/** The comment the issue is referencing. */
referenceCommentId?: Maybe<Scalars["String"]>;
/** The position of the issue related to other issues. */
sortOrder?: Maybe<Scalars["Float"]>;
/** The team state of the issue. */
stateId?: Maybe<Scalars["String"]>;
/** The position of the issue in parent's sub-issue list. */
subIssueSortOrder?: Maybe<Scalars["Float"]>;
/** The identifiers of the users subscribing to this ticket. */
subscriberIds?: Maybe<Array<Scalars["String"]>>;
/** The identifier or key of the team associated with the issue. */
teamId: Scalars["String"];
/** The title of the issue. */
title: Scalars["String"];
};
Issue Analytics
- State:
- Created 9 months ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Issues · linear/linear - GitHub
Certain types can't be imported ... createAsUser is missing from types for IssueCreateInput ... [Issue] Query Error on IssueHistory type.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah, the released is blocked but we’re on it. cc @GuillaumeLachaud
Release is blocked but the blockers are identified and currently being worked on. I can’t promise a specific release date but we’ll make sure to update you as soon as we have more visibility.