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

Its is possible to add filter for iterations column or dates columns? #1

Open
AquaroTorres opened this issue Mar 31, 2023 · 1 comment

Comments

@AquaroTorres
Copy link

No description provided.

@fiedl
Copy link
Owner

fiedl commented Mar 31, 2023

Both, iteration and date columns, are already exported to the csv file:

... on ProjectV2ItemFieldDateValue {
date
field {
... on ProjectV2FieldCommon {
name
}
}
}
... on ProjectV2ItemFieldIterationValue {
title
field {
... on ProjectV2FieldCommon {
name
}
}
}

You could filter by these columns in one of the following ways:

  1. You could filter by these columns after exporting the csv file, either with Excel, Numbers, or a script.

  2. You could modify the script to filter by these columns before exporting to the csv file.

    rows.each do |row|
    csv << row
    end

  3. Or, depending on your performance requirements, you could modify the API call to filter. I have not looked into that, but would start at the api documentation here.

Does this help you? Maybe, I've misunderstood your question.

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

2 participants