You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We still need to use the POST to create new Collection(s) but the incoming expected body is different
Incompatible with Transactional (how to have it working?)
Questions:
Why the specifications define a new endpoint to search for items: .../search while for the collections we are overloading the /collections ?
Do you have any working example about having both search and creation working at the same time?
The text was updated successfully, but these errors were encountered:
stac-fastapi itself allow you to create both, but you can't have both in the same application 🤷 IMO this is an issue at the specification level
In theory we could have a POST - /Collections endpoint which support both the search and the transaction but both are separate extension which are not linked which is why we (in the first iteration) could not propose a unify solution. That's said you could create such endpoint in your own application.
Worth noting that both POST - /Collections for search and for transaction should required different auth system (I don't think you'll want everyone to be able to create new collection, but you want everyone to search for them) which in a case of a unify solution will make the code base quite a mess (if we, at stac-fastapi level, try to support this)
Hi I'm opening this 'issue' to discuss about collection search.
Here is a working proposal but I've had to change the endpoint.
stac-utils/stac-fastapi-elasticsearch-opensearch#298
I'm encountering the following problems:
We still need to use the POST to create new Collection(s) but the incoming expected body is different
Incompatible with Transactional (how to have it working?)
Questions:
Why the specifications define a new endpoint to search for items: .../search while for the collections we are overloading the /collections ?
Do you have any working example about having both search and creation working at the same time?
The text was updated successfully, but these errors were encountered: