INPUT_OBJECT
ProcessStrategyInputType
# GraphQL Schema definition
1 input ProcessStrategyInputType { 5 2 # Expected content depends on strategy, however usually it is text, html, csv, 3 # json, xml etc.Alternativey you can process page via page argument. 4 String : 8 6 # Name of the output file 7 String! : 12 9 # Provided page will be rendered and its output will be used as a body. 10 # Alternatively you can pass body directly via body argument 11 ProcessPageInputType : 14 13 ProcessStrategy! : 19 15 # if you set to true and strategy requires asynchronous processing by us (like pdf 16 # generation) then the mutation will wait until the file is actually generated so 17 # you can for example attach it to an email 18 Boolean : 20 }