tinacms 0.69.3 → 0.69.4
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.
- package/dist/index.es.js +10 -8
- package/dist/index.js +10 -8
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -964,14 +964,16 @@ function buildPath({
|
|
|
964
964
|
}
|
|
965
965
|
const node = G.parse(`
|
|
966
966
|
query Sample {
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
967
|
+
...on Document {
|
|
968
|
+
_internalSys: _sys {
|
|
969
|
+
path
|
|
970
|
+
relativePath
|
|
971
|
+
collection {
|
|
972
|
+
name
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
_values
|
|
976
|
+
}
|
|
975
977
|
}`);
|
|
976
978
|
const metaFields = node.definitions[0].selectionSet.selections;
|
|
977
979
|
const getRelativeBlueprint = (path) => {
|
package/dist/index.js
CHANGED
|
@@ -982,14 +982,16 @@
|
|
|
982
982
|
}
|
|
983
983
|
const node = G__namespace.parse(`
|
|
984
984
|
query Sample {
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
985
|
+
...on Document {
|
|
986
|
+
_internalSys: _sys {
|
|
987
|
+
path
|
|
988
|
+
relativePath
|
|
989
|
+
collection {
|
|
990
|
+
name
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
_values
|
|
994
|
+
}
|
|
993
995
|
}`);
|
|
994
996
|
const metaFields = node.definitions[0].selectionSet.selections;
|
|
995
997
|
const getRelativeBlueprint = (path) => {
|