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

update tag query behavior to allow for multiple tag groups #334

Merged
merged 1 commit into from
Aug 9, 2019

Conversation

edaniszewski
Copy link
Contributor

fixes #329

Previously, endpoints which take tags as params could take them as a comma separated list, or in multiple tags params. For example, all of the below would be equivalent:

  • ?tags=foo,bar,baz
  • ?tags=foo&tags=bar,baz
  • ?tags=foo,bar&tags=baz
  • ?tags=foo&tags=bar&tags=baz

All the tags would be collected into a single tag group which would be used to filter the devices. If you wanted to get all fan and led devices, e.g., this would need to be done in two requests

  • ?tags=system/type:fan
  • ?tags=system/type:led

Since combining the tags into a single request ?tags=system/type:fan,system/type:led would not work, as there is no device which would have both of those tags (cannot have two system-assigned types).

With this PR, you can specify multiple tag groups from query params, so you can get back both all led and fan devices from a single request, e.g. ?tags=system/type:fan&tags=system/type:led

@edaniszewski edaniszewski merged commit 3188f78 into v3/staging Aug 9, 2019
@edaniszewski edaniszewski deleted the v3/tag-group-behavior branch August 9, 2019 14:44
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

Successfully merging this pull request may close these issues.

2 participants