@timardex/cluemart-shared 1.0.19 → 1.0.20
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/graphql/index.cjs +76 -6
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +76 -6
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +76 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +76 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1667,8 +1667,8 @@ var GET_MARKETS_NEAR_ME = gql5`
|
|
|
1667
1667
|
${MARKET}
|
|
1668
1668
|
`;
|
|
1669
1669
|
var GET_MARKET_INFO = gql5`
|
|
1670
|
-
query getMarketInfo($
|
|
1671
|
-
marketInfo(
|
|
1670
|
+
query getMarketInfo($marketId: ID!) {
|
|
1671
|
+
marketInfo(marketId: $marketId) {
|
|
1672
1672
|
...MarketInfoFields
|
|
1673
1673
|
}
|
|
1674
1674
|
}
|
|
@@ -2151,21 +2151,91 @@ var GET_RESOURCE_CONNECTIONS = gql10`
|
|
|
2151
2151
|
) {
|
|
2152
2152
|
resourceConnections(resourceId: $resourceId, resourceType: $resourceType) {
|
|
2153
2153
|
markets {
|
|
2154
|
-
|
|
2154
|
+
_id
|
|
2155
|
+
active
|
|
2156
|
+
cover {
|
|
2157
|
+
...ResourceImageFields
|
|
2158
|
+
}
|
|
2159
|
+
createdAt
|
|
2160
|
+
dateTime {
|
|
2161
|
+
...MarketDateTimeFields
|
|
2162
|
+
}
|
|
2163
|
+
description
|
|
2164
|
+
images {
|
|
2165
|
+
...ResourceImageFields
|
|
2166
|
+
}
|
|
2167
|
+
location {
|
|
2168
|
+
...MarketLocationFields
|
|
2169
|
+
}
|
|
2170
|
+
logo {
|
|
2171
|
+
...ResourceImageFields
|
|
2172
|
+
}
|
|
2173
|
+
marketInfoId
|
|
2174
|
+
name
|
|
2175
|
+
owner {
|
|
2176
|
+
...OwnerFields
|
|
2177
|
+
}
|
|
2178
|
+
promoCode
|
|
2179
|
+
provider
|
|
2180
|
+
region
|
|
2181
|
+
relationIds
|
|
2182
|
+
tags
|
|
2183
|
+
updatedAt
|
|
2155
2184
|
relationDates {
|
|
2156
2185
|
...RelationDates
|
|
2157
2186
|
}
|
|
2158
2187
|
}
|
|
2159
2188
|
stallholders {
|
|
2160
|
-
|
|
2189
|
+
_id
|
|
2190
|
+
active
|
|
2191
|
+
applyFormId
|
|
2192
|
+
categories {
|
|
2193
|
+
...CategoryFields
|
|
2194
|
+
}
|
|
2195
|
+
cover {
|
|
2196
|
+
...ResourceImageFields
|
|
2197
|
+
}
|
|
2198
|
+
createdAt
|
|
2199
|
+
description
|
|
2200
|
+
images {
|
|
2201
|
+
...ResourceImageFields
|
|
2202
|
+
}
|
|
2203
|
+
locations {
|
|
2204
|
+
dateTime {
|
|
2205
|
+
...StallholderDateTimeFields
|
|
2206
|
+
}
|
|
2207
|
+
description
|
|
2208
|
+
location {
|
|
2209
|
+
...StallholderLocationFields
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
logo {
|
|
2213
|
+
...ResourceImageFields
|
|
2214
|
+
}
|
|
2215
|
+
multiLocation
|
|
2216
|
+
name
|
|
2217
|
+
owner {
|
|
2218
|
+
...OwnerFields
|
|
2219
|
+
}
|
|
2220
|
+
products
|
|
2221
|
+
promoCode
|
|
2222
|
+
region
|
|
2223
|
+
relationIds
|
|
2224
|
+
specialities
|
|
2225
|
+
updatedAt
|
|
2161
2226
|
relationDates {
|
|
2162
2227
|
...RelationDates
|
|
2163
2228
|
}
|
|
2164
2229
|
}
|
|
2165
2230
|
}
|
|
2166
2231
|
}
|
|
2167
|
-
${
|
|
2168
|
-
${
|
|
2232
|
+
${MARKET_DATETIME_FIELDS_FRAGMENT}
|
|
2233
|
+
${MARKET_LOCATION_FIELDS_FRAGMENT}
|
|
2234
|
+
${OWNER_FIELDS_FRAGMENT}
|
|
2235
|
+
${RESOURCE_IMAGE_FIELDS_FRAGMENT}
|
|
2236
|
+
${CATEGORY_FIELDS_FRAGMENT}
|
|
2237
|
+
${STALLHOLDER_DATETIME_FIELDS_FRAGMENT}
|
|
2238
|
+
${STALLHOLDER_LOCATION_FIELDS_FRAGMENT}
|
|
2169
2239
|
${RELATION_DATES_FRAGMENT}
|
|
2170
2240
|
`;
|
|
2171
2241
|
|