show/hide this revision's text 2 Fixed typo

Given:

/images: list of all images
/images/{id}: images/{imageId}: specific image
feed: /feed/{feedId}: potentially huge list of some images (not all of them)

How would you query if a particular feed contains a particular image without downloading the full list? Put another way, how would you check whether a resource state contains a component without downloading the entire state? The first thought that comes to mind is:

Alias /images/{id} images/{imageId} to /feed/images/{id}
feed/{feedId}/images/{imageId}

Clients would then issue HTTP GET against /feed/images/{id} to check for its existence. The downside I see with this approach is that it forces me to hard-code logic into the client for breaking down an image URI to its proprietary id, something that REST frowns upon. Ideally I should be using the opaque image URI. Another option is:

Issue HTTP GET against /feed?contains={imageURI} feed/{feedId}?contains={imageURI} to check for existence

but that feels a lot closer to RPC than I'd like. Any ideas?

    Post Made Community Wiki by Community

show/hide this revision's text 1

RESTful, efficient way to query List.contains(element)?

Given:

/images: list of all images
/images/{id}: specific image
feed: potentially huge list of some images (not all of them)

How would you query if a feed contains a particular image without downloading the full list? Put another way, how would you check whether a resource state contains a component without downloading the entire state? The first thought that comes to mind is:

Alias /images/{id} to /feed/images/{id}

Clients would then issue HTTP GET against /feed/images/{id} to check for its existence. The downside I see with this approach is that it forces me to hard-code logic into the client for breaking down an image URI to its proprietary id, something that REST frowns upon. Ideally I should be using the opaque image URI. Another option is:

Issue HTTP GET against /feed?contains={imageURI} to check for existence

but that feels a lot closer to RPC than I'd like. Any ideas?