slides.js 527 B

12345678910111213141516171819
  1. export const getSlidesByProps=`query slidsbyprops($admin_id: ID, $img: String, $name: String, $createdAt: String, $updatedAt: String) {
  2. slidsbyprops: slids_by_props(admin_id: $admin_id img: $img name: $name createdAt: $createdAt updatedAt: $updatedAt) {
  3. id
  4. admin_id {
  5. id
  6. openid
  7. username
  8. password
  9. telephone
  10. email
  11. createdAt
  12. updatedAt
  13. }
  14. img
  15. name
  16. createdAt
  17. updatedAt
  18. }
  19. }`