FRequestInit is the configuration object for a Fetchling resource, based on the RequestInit arguments to the fetch API. Any arguments that can be passed to fetch() can be used to configure Fetchling requests.
Whether or not fetchling should attempt to automatically parse the body of a response, depending on the "Accept" header of the request. Defaults to true.
If set to true, automatically set the "Accept" header of the request to "application/json". Also sets parseBody to true, so Fetchling will auto- parse response bodies (as JSON). Default false.
jsonBody: any
A JavaScript object that should be serialized with JSON.stringify. Will also set the "Content-Type" header of the request to "application/json".
query: URLSearchParams | any
Argument to URLSearchParams that will be added to the request URL when the request is made.