| 12345678910111213141516171819 |
- export const getSlidesByProps=`query slidsbyprops($admin_id: ID, $img: String, $name: String, $createdAt: String, $updatedAt: String) {
- slidsbyprops: slids_by_props(admin_id: $admin_id img: $img name: $name createdAt: $createdAt updatedAt: $updatedAt) {
- id
- admin_id {
- id
- openid
- username
- password
- telephone
- email
- createdAt
- updatedAt
- }
- img
- name
- createdAt
- updatedAt
- }
- }`
|