-
Notifications
You must be signed in to change notification settings - Fork 21
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
Create a restful API to retrieve resource bundle #96
Comments
Thanks @machi1990 for reporting this. The current design is
In order to support your case, it may introduce the trouble that one resource can have multiple operators (restful and gRPC). |
It is also related with setting |
I fail to see an issue with this; can you elaborate what's the issue with a resource being operated by multiple operators? |
I think exposing the codecs config as done in #94 is fine |
@clyang82 apologies, I missed the ping in this card.
I've tested all the green boxes succesful; except for the WATCH (subscribe API) which I've opened a discussion thread on.
Correct, the |
To expand on this, will there also be a |
I think so, we should have both list and get. |
link this issue together #103 |
I am happy for this issue to be closed in favor of #103 |
Currently, it is not possible to retrieve resources whose type is
Bundle
via the rest API.It's a perfect use case for someone to create a resource with type Bundle via the grpc client on one component and on the other component using the rest API wanting to list all resources (Single and Bundle resources) or even filtering by bundle resource
e.g
At the moment, the above query returns an empty list all the time even if there are resources with type Bundle in the database.
The reason is that the query performed by the backend is
notice the
(resources.type = 'Bundle' AND resources.type = 'Single')
@qiujian16 @clyang82
The text was updated successfully, but these errors were encountered: