objectManagerFrontendAttributes.graphql 294 B

12345678910111213141516
  1. query objectManagerFrontendAttributes($object: EnumObjectManagerObjects!) {
  2. objectManagerFrontendAttributes(object: $object) {
  3. attributes {
  4. name
  5. display
  6. dataType
  7. dataOption
  8. isInternal
  9. screens
  10. }
  11. screens {
  12. name
  13. attributes
  14. }
  15. }
  16. }