mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 04:21:56 +00:00
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
module.exports = {
|
|
query: `
|
|
testQuery: Homepage
|
|
`,
|
|
resolver: {
|
|
Query: {
|
|
testQuery: {
|
|
policies: ['plugin::users-permissions.isAuthenticated'],
|
|
resolver: 'api::homepage.homepage.find',
|
|
},
|
|
},
|
|
},
|
|
};
|