trailing.graphql 495 B

123456789101112131415161718192021
  1. query Query(
  2. $pageID: ID!
  3. $scale: Float
  4. $PROJECT_UNIT_PROFILE_PICTURE_SIZE: Int
  5. $PROJECT_UNIT_CARD_SIZE: Int
  6. ) @argumentDefinitions(
  7. count: {type: "Int", defaultValue: 20, someSuperSuperSuperSuperLongType: 301}
  8. test: [{type: "Int", defaultValue: 20, someSuperSuperSuperSuperLongType: 301}]
  9. ) {
  10. cover_photo {
  11. image(
  12. width: $PROJECT_UNIT_CARD_SIZE,
  13. height: $PROJECT_UNIT_CARD_SIZE,
  14. sizing: "cover-fill",
  15. scale: $scale,
  16. ) {
  17. uri
  18. }
  19. }
  20. }