flamingo.me/flamingo-commerce/v3@v3.11.0/test/integrationtest/projecttest/graphql/schema/flamingo.me_flamingo-commerce_v3_price_interfaces_graphql-Service.graphql (about) 1 type Commerce_Price{ 2 amount: Float 3 currency: String! 4 } 5 6 type Commerce_Price_Charge { 7 price: Commerce_Price! 8 value: Commerce_Price! 9 type: String! 10 reference: String! 11 } 12 13 type Commerce_Price_ChargeQualifier { 14 type: String! 15 reference: String! 16 } 17 18 input Commerce_Price_ChargeQualifierInput { 19 type: String! 20 reference: String! 21 } 22 23 type Commerce_Price_Charges { 24 items: [Commerce_Price_Charge!] 25 hasType(ctype: String): Boolean 26 hasChargeQualifier(qualifier: Commerce_Price_ChargeQualifierInput!): Boolean 27 getByChargeQualifierForced(qualifier: Commerce_Price_ChargeQualifierInput!): Commerce_Price_Charge 28 getByTypeForced(ctype: String): Commerce_Price_Charge 29 }