@sanity/client 6.1.4 → 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.
@@ -874,7 +874,7 @@ function _requestObservable(client, httpRequest, options) {
874
874
  ...options.query
875
875
  };
876
876
  }
877
- if (["GET", "HEAD"].indexOf(options.method || "GET") >= 0 && uri.indexOf("/data/query/") === 0) {
877
+ if (["GET", "HEAD", "POST"].indexOf(options.method || "GET") >= 0 && uri.indexOf("/data/query/") === 0) {
878
878
  if (config.resultSourceMap) {
879
879
  options.query = {
880
880
  resultSourceMap: true,