Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AgilesGetAsync does not correctly populate issue custom fields #118

Open
conradakunga opened this issue May 4, 2022 · 0 comments
Open

Comments

@conradakunga
Copy link

I have the following code to pull agile boards, sprints and issues

var client = await connection.GetAuthenticatedApiClient();
var result = await client.AgilesGetAsync(fields: "name,id,owner(id,name,fullname),sprints(id,agile(name),name,start,unresolvedIssuesCount,issues(idReadable,summary,customFields(name,value)),start)");

Expected behaviour

The name and value of the custom fields should be populated

Actual behaviour

The name is populated but the value isn't.

However, if I change the fields from this

customFields(name,value)

to this

customFields(name,value(id,fullName))

The output changes from this

image

to this

image

What seems to be happening is anything with an ID or a FullName child property is populated.

However the simple properties always seem to be null.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant