-
-
Notifications
You must be signed in to change notification settings - Fork 1
FAQ
In this section, you will find answers to the most frequent questions about the csv2api
parser.
To understand how the section works, imagine a common logical condition: if all the specified data in the specified columns of the CSV file satisfy the condition, then the filtering is successful.
For example:
# ...
filter_columns:
- column_name: order_id
condition: NEQ
value: ''
- column_name: is_paid
condition: EQ
value: '1'
This filter will work if and only if:
- The column with the name
order_id
will have a non-empty value; - AND
- The column named
is_paid
will contain the value'1'
.
Sometimes it happens, it's true… but don't get upset! 🙂
Wiki is a dynamically growing section, so write us your question, and we'll try to answer it. If the question is interesting and/or repeated too often, we'll add it to a FAQ section (with reference to the author's issue).
The best way to ask a question is to create a new issue or a discussion in GitHub repository.
So, follow this checklist to ask a question that we can answer in the shortest possible time:
- Try to search similar question in the issues section.
- If your question is about Go, or else, try to search at StackOverflow first.
- Please fully follow our template to create a new issue.
- If English is not your native language, please use an online translator in advance (for example, DeepL or Google Translate).
- Demonstrate understanding to authors, because this is Open Source and not-for-profit product, and their support is not paid.
- Be nice to the other members of our community.