(collectionId: string)
| 49 | * Collections are fetched by ID from /collections/{collectionId}. |
| 50 | */ |
| 51 | export function generateCollectionQueryKey(collectionId: string): [string, string] { |
| 52 | return ['collection', collectionId]; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Generates a query key for STAC item requests. |
no outgoing calls
no test coverage detected