Configuration
collection()
Signature
Section titled “Signature”collection() — returns struct
Available in: mapper
Category: Routing
Description
Section titled “Description”A collection route doesn’t require an id because it acts on a collection of objects. photos/search is an example of a collection route, because it acts on (and displays) a collection of objects.
Examples
Section titled “Examples”
<cfscript>
mapper()
// Create a route like `photos/search`
.resources(name="photos", nested=true)
.collection()
.get("search")
.end()
.end()
.end();
</cfscript>