@sanity/client 6.1.5 → 6.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -878,7 +878,7 @@ function _requestObservable(client, httpRequest, options) {
878
878
  ...options.query
879
879
  };
880
880
  }
881
- if (["GET", "HEAD"].indexOf(options.method || "GET") >= 0 && uri.indexOf("/data/query/") === 0) {
881
+ if (["GET", "HEAD", "POST"].indexOf(options.method || "GET") >= 0 && uri.indexOf("/data/query/") === 0) {
882
882
  if (config.resultSourceMap) {
883
883
  options.query = {
884
884
  resultSourceMap: true,