index.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true,
  4. });
  5. Object.defineProperty(exports, 'backwardConnectionArgs', {
  6. enumerable: true,
  7. get: function () {
  8. return _connection.backwardConnectionArgs;
  9. },
  10. });
  11. Object.defineProperty(exports, 'connectionArgs', {
  12. enumerable: true,
  13. get: function () {
  14. return _connection.connectionArgs;
  15. },
  16. });
  17. Object.defineProperty(exports, 'connectionDefinitions', {
  18. enumerable: true,
  19. get: function () {
  20. return _connection.connectionDefinitions;
  21. },
  22. });
  23. Object.defineProperty(exports, 'forwardConnectionArgs', {
  24. enumerable: true,
  25. get: function () {
  26. return _connection.forwardConnectionArgs;
  27. },
  28. });
  29. Object.defineProperty(exports, 'connectionFromArray', {
  30. enumerable: true,
  31. get: function () {
  32. return _arrayConnection.connectionFromArray;
  33. },
  34. });
  35. Object.defineProperty(exports, 'connectionFromArraySlice', {
  36. enumerable: true,
  37. get: function () {
  38. return _arrayConnection.connectionFromArraySlice;
  39. },
  40. });
  41. Object.defineProperty(exports, 'connectionFromPromisedArray', {
  42. enumerable: true,
  43. get: function () {
  44. return _arrayConnection.connectionFromPromisedArray;
  45. },
  46. });
  47. Object.defineProperty(exports, 'connectionFromPromisedArraySlice', {
  48. enumerable: true,
  49. get: function () {
  50. return _arrayConnection.connectionFromPromisedArraySlice;
  51. },
  52. });
  53. Object.defineProperty(exports, 'cursorForObjectInConnection', {
  54. enumerable: true,
  55. get: function () {
  56. return _arrayConnection.cursorForObjectInConnection;
  57. },
  58. });
  59. Object.defineProperty(exports, 'cursorToOffset', {
  60. enumerable: true,
  61. get: function () {
  62. return _arrayConnection.cursorToOffset;
  63. },
  64. });
  65. Object.defineProperty(exports, 'getOffsetWithDefault', {
  66. enumerable: true,
  67. get: function () {
  68. return _arrayConnection.getOffsetWithDefault;
  69. },
  70. });
  71. Object.defineProperty(exports, 'offsetToCursor', {
  72. enumerable: true,
  73. get: function () {
  74. return _arrayConnection.offsetToCursor;
  75. },
  76. });
  77. Object.defineProperty(exports, 'mutationWithClientMutationId', {
  78. enumerable: true,
  79. get: function () {
  80. return _mutation.mutationWithClientMutationId;
  81. },
  82. });
  83. Object.defineProperty(exports, 'nodeDefinitions', {
  84. enumerable: true,
  85. get: function () {
  86. return _node.nodeDefinitions;
  87. },
  88. });
  89. Object.defineProperty(exports, 'fromGlobalId', {
  90. enumerable: true,
  91. get: function () {
  92. return _node.fromGlobalId;
  93. },
  94. });
  95. Object.defineProperty(exports, 'globalIdField', {
  96. enumerable: true,
  97. get: function () {
  98. return _node.globalIdField;
  99. },
  100. });
  101. Object.defineProperty(exports, 'toGlobalId', {
  102. enumerable: true,
  103. get: function () {
  104. return _node.toGlobalId;
  105. },
  106. });
  107. Object.defineProperty(exports, 'pluralIdentifyingRootField', {
  108. enumerable: true,
  109. get: function () {
  110. return _plural.pluralIdentifyingRootField;
  111. },
  112. });
  113. var _connection = require('./connection/connection');
  114. var _arrayConnection = require('./connection/arrayConnection');
  115. var _mutation = require('./mutation/mutation');
  116. var _node = require('./node/node');
  117. var _plural = require('./node/plural');