Replies: 3 comments
-
Hello @eramudeep , you can get
The get method contains an |
Beta Was this translation helpful? Give feedback.
-
Simply use find method. With query parameter status: 'active' users.find({
query: {
status: 'active'
}
}) |
Beta Was this translation helpful? Give feedback.
-
Since there is only one get method, I think it is sometimes necessary to maintain a simple structure. I am using it this way. `export const boardsConfigure = (app: Application) => {
} |
Beta Was this translation helpful? Give feedback.
-
I am new to
feathersjs
i am very much confused about the endpoints.Consider I created a Service Named
game
now I have one endpoint which isgame
which will support'find', 'get', 'create', 'patch', 'remove'
But i wanted to create an endpoint like
game/active-game
and fetch only one record which hasstatus:'active'
i am very much confused :(
Beta Was this translation helpful? Give feedback.
All reactions