For the service detail `/service/[id]` ```graphql query Service(id) { id data { # ... } } ``` for service list, the top services dashboard on `/` & `/services` ```graphql query Services(asc = true, page = 1, row = 10, sort_by = enum ) { # ... } ```
For the service detail
/service/[id]for service list, the top services dashboard on
/&/services