diff --git a/.changeset/kind-suits-shop.md b/.changeset/kind-suits-shop.md
new file mode 100644
index 0000000000000..19178564eb641
--- /dev/null
+++ b/.changeset/kind-suits-shop.md
@@ -0,0 +1,5 @@
+---
+'@graphql-mesh/utils': patch
+---
+
+Replace lodsash.set with dset
diff --git a/examples/openapi-location-weather/tests/__snapshots__/location-weather.test.ts.snap b/examples/openapi-location-weather/tests/__snapshots__/location-weather.test.ts.snap
index bfb6eabf2abc2..289de10ec5902 100644
--- a/examples/openapi-location-weather/tests/__snapshots__/location-weather.test.ts.snap
+++ b/examples/openapi-location-weather/tests/__snapshots__/location-weather.test.ts.snap
@@ -125,6 +125,9 @@ type Countries_Response {
"""Full country details"""
type Country_Details {
+ """The country dialing prefix"""
+ callingCode: String
+
"""The ISO-3166 country code"""
code: String
@@ -276,6 +279,9 @@ type CurrentObs {
"""Global horizontal irradiance (W/m^2)"""
ghi: Float
+ """Wind gust speed - Default (m/s)"""
+ gust: Float
+
"""Current solar hour angle (Degrees)"""
hour_angle: Float
@@ -309,6 +315,9 @@ type CurrentObs {
"""Estimated solar radiation (W/m^2)"""
solar_rad: Float
+ """List of data sources used in response"""
+ sources: [String]
+
"""State abbreviation"""
state_code: String
@@ -414,10 +423,13 @@ type EnergyObs {
"""Total snowfall in period - Default (mm)"""
snow: Float
+ """List of data sources used in response"""
+ sources: [String]
+
"""State abbreviation"""
state_code: String
- """Source Station ID"""
+ """Nearest Station ID [DEPRECATED]"""
station_id: String
"""
@@ -444,7 +456,7 @@ type EnergyObs {
wind_dir: Int
"""Average wind speed - Default (m/s)"""
- wind_speed: Float
+ wind_spd: Float
}
type EnergyObsGroup {
@@ -532,7 +544,7 @@ type EnergyObsSeries {
wind_dir: Int
"""Average wind speed - Default (m/s)"""
- wind_speed: Float
+ wind_spd: Float
}
"""
@@ -708,9 +720,6 @@ type ForecastHour {
"""Accumulated snowfall since last forecast point - Default (mm)"""
snow: Float
- """6 hour accumulated snowfall. Default (mm)"""
- snow6h: Float
-
"""Snow depth - Default (mm)"""
snow_depth: Float
@@ -734,7 +743,7 @@ type ForecastHour {
"""Visibility - Default (KM)"""
vis: Float
- weather: query_forecast_3hourly_by_city_by_country_data_items_weather
+ weather: query_forecast_hourly_by_city_by_country_data_items_weather
"""Cardinal wind direction"""
wind_cdir: String
@@ -745,6 +754,9 @@ type ForecastHour {
"""Wind direction"""
wind_dir: Int
+ """Wind Gust Speed - Default (m/s)"""
+ wind_gust_spd: Float
+
"""Wind Speed - Default (m/s)"""
wind_spd: Float
}
@@ -796,7 +808,7 @@ type History {
"""Longitude"""
lon: String
- """Weather stations used in response"""
+ """List of data sources used in response"""
sources: [String]
"""State abbreviation"""
@@ -820,7 +832,7 @@ type HistoryDay {
"""Longitude"""
lon: String
- """Weather stations used in response"""
+ """List of data sources used in response"""
sources: [String]
"""State abbreviation"""
@@ -879,6 +891,9 @@ type HistoryDayObj {
"""Average pressure (mb)"""
pres: Float
+ """Data revision status (interim or final)"""
+ revision_status: String
+
"""Average relative humidity as a percentage (%)"""
rh: Int
@@ -917,6 +932,15 @@ type HistoryDayObj {
}
type HistoryObj {
+ """Apparent Temperature or Wind Chill/Heat Index (Default Celcius)"""
+ app_temp: Float
+
+ """Azimuth angle (Degrees)"""
+ azimuth: Float
+
+ """Cloud Cover 0-100 (%)"""
+ clouds: Int
+
"""Date in format "YYYY-MM-DD:HH". All datetime is in (UTC)"""
datetime: String
@@ -947,6 +971,9 @@ type HistoryObj {
"""Pressure (mb)"""
pres: Float
+ """Data revision status (interim or final)"""
+ revision_status: String
+
"""Relative Humidity as a percentage (%)"""
rh: Int
@@ -956,9 +983,6 @@ type HistoryObj {
"""Snowfall - Default (mm)"""
snow: Float
- """Snowfall in last 6 hours - Default (mm)"""
- snow6h: Float
-
"""Estimated solar radiation (W/m^2)"""
solar_rad: Float
@@ -976,15 +1000,45 @@ type HistoryObj {
"""UV Index (1-11+)"""
uv: Float
+
+ """Visibility (KM)"""
+ vis: Float
weather: query_history_hourly_by_city_by_country_data_items_weather
"""Wind direction (Degrees)"""
wind_dir: Int
+ """Wind Gust Speed - Default (m/s)"""
+ wind_gust_spd: Float
+
"""Wind Speed (Default m/s)"""
wind_spd: Float
}
+type HistorySubhourly {
+ """City name (Closest)"""
+ city_name: String
+
+ """Country abbreviation"""
+ country_code: String
+ data: [HistoryObj]
+
+ """Latitude"""
+ lat: String
+
+ """Longitude"""
+ lon: String
+
+ """List of data sources used in response"""
+ sources: [String]
+
+ """State abbreviation"""
+ state_code: String
+
+ """Local IANA time zone"""
+ timezone: String
+}
+
"""
The \`JSON\` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
@@ -1159,10 +1213,10 @@ type Query {
): WeatherAlert
"""
- **(Advanceed/Enterprise plans only)** Downloads bulk data files - OPTIONS: ( current.json.gz - Current observations for cities > 1000 population). Units are Metric (Celcius, m/s, etc).
+ Downloads bulk data files - OPTIONS: ( current.csv.gz, forecast_hourly.csv.gz, forecast_daily.csv.gz). Units are Metric (Celcius, m/s, etc).
"""
bulk_files_by_file(
- """Filename (ie. current.json.gz)"""
+ """Filename (ie. current.csv.gz)"""
file: String!
"""Your registered API key."""
@@ -1307,6 +1361,24 @@ type Query {
units: queryInput_current_by_lat_by_lon_units
): CurrentObsGroup
+ """
+ Returns a group of Current Observations - Given a list of points (lat1, lon1), (lat2, lon2), (latN, lonN), ...
+ """
+ current_by_points(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
+
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_current_by_points_lang
+
+ """
+ Comma separated list of points. Example: (35.5, -75.5),(45, 65),(45.12, -130.5)
+ """
+ points: String!
+ units: queryInput_current_by_points_units
+ ): CurrentObsGroup
+
"""Returns current weather observation - Given a Postal Code. """
current_by_postal_code(
"""Wraps return in jsonp callback - Example - callback=func"""
@@ -1406,6 +1478,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1413,8 +1490,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1470,6 +1547,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1477,8 +1559,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1537,6 +1619,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1544,8 +1631,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1604,6 +1691,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1611,8 +1703,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1673,6 +1765,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1680,8 +1777,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1740,6 +1837,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1747,8 +1849,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1804,6 +1906,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1811,8 +1918,8 @@ type Query {
radius: Int
"""
- How to sort place results.
- 'Format: ±SORT_FIELD,±SORT_FIELD'
+ How to sort places.
+ Format: ±SORT_FIELD,±SORT_FIELD
where SORT_FIELD = countryCode | elevation | name | population
"""
sort: String
@@ -1855,6 +1962,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1909,6 +2021,11 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
@@ -1926,88 +2043,6 @@ type Query {
timeZoneIds: String
): Populated_Places_Response
- "Returns a 3-hourly forecast, where each point represents a three hour period. Every point has a datetime string in the format \\"YYYY-MM-DD:HH\\". Time is UTC.\\n"
- forecast_3hourly_by_city_by_country(
- """Wraps return in jsonp callback. Example - callback=func"""
- callback: String
-
- """
- City search.. Example - &city=Raleigh,NC or &city=Berlin,DE or city=Paris&country=FR
- """
- city: String!
-
- """Country Code (2 letter)."""
- country: String!
-
- """Number of days to return. Default 5."""
- days: Float
-
- """Your registered API key."""
- key: String!
- lang: queryInput_forecast_3hourly_by_city_by_country_lang
-
- """Full name of state."""
- state: String
- units: queryInput_forecast_3hourly_by_city_by_country_units
- ): ForecastHourly
-
- "Returns a 3-hourly forecast, where each point represents a three hour period. Every point has a datetime string in the format \\"YYYY-MM-DD:HH\\". Time is UTC.\\n"
- forecast_3hourly_by_city_id(
- """Wraps return in jsonp callback. Example: callback=func"""
- callback: String
-
- """City ID. Example: 4487042"""
- city_id: Int!
-
- """Number of days to return. Default 5."""
- days: Float
-
- """Your registered API key."""
- key: String!
- lang: queryInput_forecast_3hourly_by_city_id_lang
- units: queryInput_forecast_3hourly_by_city_id_units
- ): ForecastHourly
-
- "Returns a 3-hourly forecast, where each point represents a three hour period. Every point has a datetime string in the format \\"YYYY-MM-DD:HH\\". Time is UTC.\\n"
- forecast_3hourly_by_lat_by_lon(
- """Wraps return in jsonp callback. Example - callback=func"""
- callback: String
-
- """Number of days to return. Default 5."""
- days: Float
-
- """Your registered API key."""
- key: String!
- lang: queryInput_forecast_3hourly_by_lat_by_lon_lang
-
- """Latitude component of location."""
- lat: Float!
-
- """Longitude component of location."""
- lon: Float!
- units: queryInput_forecast_3hourly_by_lat_by_lon_units
- ): ForecastHourly
-
- "Returns a 3-hourly forecast, where each point represents a three hour period. Every point has a datetime string in the format \\"YYYY-MM-DD:HH\\". Time is UTC.\\n"
- forecast_3hourly_by_postal_code(
- """Wraps return in jsonp callback. Example: callback=func"""
- callback: String
-
- """Country Code (2 letter)."""
- country: String
-
- """Number of days to return. Default 5."""
- days: Float
-
- """Your registered API key."""
- key: String!
- lang: queryInput_forecast_3hourly_by_postal_code_lang
-
- """Postal Code. Example: 28546"""
- postal_code: Int!
- units: queryInput_forecast_3hourly_by_postal_code_units
- ): ForecastHourly
-
"""
Returns 72 hour (hourly) Air Quality forecast, where each point represents a one hour period.
"""
@@ -2359,8 +2394,20 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
+
+ """
+ How to sort countries.
+ Format: ±SORT_FIELD
+ where SORT_FIELD = code | name
+ """
+ sort: String
): Countries_Response
"""Get the details for a specific country, including number of regions."""
@@ -2456,8 +2503,20 @@ type Query {
"""
namePrefix: String
+ """
+ When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set.
+ """
+ namePrefixDefaultLangResults: Boolean = true
+
"""The zero-ary offset index into the results"""
offset: Int
+
+ """
+ How to sort regions.
+ Format: ±SORT_FIELD
+ where SORT_FIELD = fipsCode | isoCode | name
+ """
+ sort: String
): Country_Regions_Response
"""Get time-zone date-time"""
@@ -2472,6 +2531,12 @@ type Query {
zoneId: String!
): Time_Response
+ """Get time-zone"""
+ getTimeZoneUsingGET(
+ """A time-zone id"""
+ zoneId: String!
+ ): Time_Zone_Response
+
"""Get all known time-zones"""
getTimezonesUsingGET(
"""Include HATEOAS-style links in results"""
@@ -2547,7 +2612,7 @@ type Query {
): AQCurrentGroup
"""
- Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate. **(LIMIT 1 year per request)**
"""
history_daily_by_city_by_country(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2577,7 +2642,7 @@ type Query {
): HistoryDay
"""
- Returns Historical Observations - Given a City ID. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a City ID. **(LIMIT 1 year per request)**
"""
history_daily_by_city_id(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2599,7 +2664,7 @@ type Query {
): HistoryDay
"""
- Returns Historical Observations - Given a lat, and lon. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a lat, and lon. **(LIMIT 1 year per request)**
"""
history_daily_by_lat_by_lon(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2624,7 +2689,7 @@ type Query {
): HistoryDay
"""
- Returns Historical Observations - Given a Postal Code. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a Postal Code. **(LIMIT 1 year per request)**
"""
history_daily_by_postal_code(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2649,7 +2714,7 @@ type Query {
): HistoryDay
"""
- Returns Historical Observations - Given a station ID. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a station ID. **(LIMIT 1 year per request)**
"""
history_daily_by_station(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2670,39 +2735,6 @@ type Query {
units: queryInput_history_daily_by_station_units
): HistoryDay
- """
- Returns aggregate energy specific historical weather fields, over a specified time period. Supply a bounding box ex: lat1=40&lon1=-78&lat2=38&lon2=-80. This API will return UP TO 150 stations, aggregated by the specified time period start_date to end_date.
- """
- history_energy_bbox_by_lat1_by_lon1_by_lat2_by_lon2(
- """Wraps return in jsonp callback. Example: callback=func"""
- callback: String
-
- """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
- end_date: String!
-
- """Your registered API key."""
- key: String!
-
- """Latitude of upper left corner."""
- lat1: Float!
-
- """Latitude of lower right corner."""
- lat2: Float!
-
- """Longitude of upper left corner."""
- lon1: Float!
-
- """Longitude of lower right corner."""
- lon2: Float!
-
- """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
- start_date: String!
-
- """Temperature threshold to use to calculate degree days (default 18 C)"""
- threshold: Float
- units: queryInput_history_energy_bbox_by_lat1_by_lon1_by_lat2_by_lon2_units
- ): EnergyObsGroup
-
"""
Returns aggregate energy specific historical weather fields, over a specified time period.
"""
@@ -2732,7 +2764,7 @@ type Query {
): EnergyObsGroup
"""
- Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate. **(LIMIT 31 days per request)**
"""
history_hourly_by_city_by_country(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2763,7 +2795,7 @@ type Query {
): History
"""
- Returns Historical Observations - Given a City ID. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a City ID. **(LIMIT 31 days per request)**
"""
history_hourly_by_city_id(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2786,7 +2818,7 @@ type Query {
): History
"""
- Returns Historical Observations - Given a lat, and lon. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a lat, and lon. **(LIMIT 31 days per request)**
"""
history_hourly_by_lat_by_lon(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2812,7 +2844,7 @@ type Query {
): History
"""
- Returns Historical Observations - Given a Postal Code. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a Postal Code. **(LIMIT 31 days per request)**
"""
history_hourly_by_postal_code(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2838,7 +2870,7 @@ type Query {
): History
"""
- Returns Historical Observations - Given a station ID. **(LIMIT 1 day for Free plan. LIMIT 7 days for Developer. LIMIT 30 days for Advanced/Advanced+/Enterprise)**
+ Returns Historical Observations - Given a station ID. **(LIMIT 31 days per request)**
"""
history_hourly_by_station(
"""Wraps return in jsonp callback. Example: callback=func"""
@@ -2859,47 +2891,182 @@ type Query {
tz: queryInput_history_hourly_by_station_tz
units: queryInput_history_hourly_by_station_units
): History
-}
-
-scalar ResolveToSourceArgs
-"""An ISO-8601 time response"""
-type Time_Response {
- """The time in ISO-8601 format: HHmmss.SSSZ"""
- data: String
- errors: [CitiesError]
-}
+ """
+ Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate.
+ """
+ history_subhourly_by_city_by_country(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
-"""A time-zone"""
-type Time_Zone {
- """The time-zone id"""
- id: String
+ """
+ City search. Example - &city=Raleigh,NC or &city=Berlin,DE or city=Paris&country=FR
+ """
+ city: String!
- """The time-zone name"""
- name: String
+ """Country Code (2 letter)."""
+ country: String!
- """The number of hours this time-zone is offset from UTC"""
- rawUtcOffsetHours: Int
-}
+ """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ end_date: String!
-"""A list of time-zones"""
-type Time_Zones_Response {
- data: [Time_Zone]
- errors: [CitiesError]
- links: [Link]
- metadata: Metadata
-}
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_history_subhourly_by_city_by_country_lang
-"""
-A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt.
-"""
-scalar URL
+ """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ start_date: String!
-type WeatherAlert {
- alerts: [WeatherAlertGroup]
+ """Full name of state."""
+ state: String
+ tz: queryInput_history_subhourly_by_city_by_country_tz
+ units: queryInput_history_subhourly_by_city_by_country_units
+ ): History
- """Latitude"""
- lat: Float
+ """Returns Historical Observations - Given a City ID."""
+ history_subhourly_by_city_id(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
+
+ """City ID. Example: 4487042"""
+ city_id: String!
+
+ """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)"""
+ end_date: String!
+
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_history_subhourly_by_city_id_lang
+
+ """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)"""
+ start_date: String!
+ tz: queryInput_history_subhourly_by_city_id_tz
+ units: queryInput_history_subhourly_by_city_id_units
+ ): HistorySubhourly
+
+ """Returns Historical Observations - Given a lat, and lon."""
+ history_subhourly_by_lat_by_lon(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
+
+ """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ end_date: String!
+
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_history_subhourly_by_lat_by_lon_lang
+
+ """Latitude component of location."""
+ lat: Float!
+
+ """Longitude component of location."""
+ lon: Float!
+
+ """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ start_date: String!
+ tz: queryInput_history_subhourly_by_lat_by_lon_tz
+ units: queryInput_history_subhourly_by_lat_by_lon_units
+ ): HistorySubhourly
+
+ """Returns Historical Observations - Given a Postal Code."""
+ history_subhourly_by_postal_code(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
+
+ """Country Code (2 letter)."""
+ country: String
+
+ """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)"""
+ end_date: String!
+
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_history_subhourly_by_postal_code_lang
+
+ """Postal Code. Example: 28546"""
+ postal_code: String!
+
+ """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)"""
+ start_date: String!
+ tz: queryInput_history_subhourly_by_postal_code_tz
+ units: queryInput_history_subhourly_by_postal_code_units
+ ): HistorySubhourly
+
+ """Returns Historical Observations - Given a station ID."""
+ history_subhourly_by_station(
+ """Wraps return in jsonp callback. Example: callback=func"""
+ callback: String
+
+ """End Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ end_date: String!
+
+ """Your registered API key."""
+ key: String!
+ lang: queryInput_history_subhourly_by_station_lang
+
+ """Start Date (YYYY-MM-DD or YYYY-MM-DD:HH)."""
+ start_date: String!
+
+ """Station ID."""
+ station: String!
+ tz: queryInput_history_subhourly_by_station_tz
+ units: queryInput_history_subhourly_by_station_units
+ ): HistorySubhourly
+}
+
+scalar ResolveToSourceArgs
+
+"""An ISO-8601 time response"""
+type Time_Response {
+ """The time in ISO-8601 format: HHmmss.SSSZ"""
+ data: String
+ errors: [CitiesError]
+}
+
+"""A time-zone"""
+type Time_Zone {
+ """The time-zone id"""
+ id: String
+
+ """The time-zone name"""
+ name: String
+
+ """The number of hours this time-zone is offset from UTC"""
+ rawUtcOffsetHours: Int
+}
+
+"""A time-zone"""
+type Time_Zone_Response {
+ errors: [CitiesError]
+
+ """The time-zone id"""
+ id: String
+
+ """The time-zone name"""
+ name: String
+
+ """The number of hours this time-zone is offset from UTC"""
+ rawUtcOffsetHours: Int
+}
+
+"""A list of time-zones"""
+type Time_Zones_Response {
+ data: [Time_Zone]
+ errors: [CitiesError]
+ links: [Link]
+ metadata: Metadata
+}
+
+"""
+A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt.
+"""
+scalar URL
+
+type WeatherAlert {
+ alerts: [WeatherAlertGroup]
+
+ """Latitude"""
+ lat: Float
"""Longitude"""
lon: Float
@@ -3128,7 +3295,7 @@ enum queryInput_current_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_current_by_postal_code_lang {
+enum queryInput_current_by_points_lang {
ar
az
be
@@ -3167,7 +3334,7 @@ enum queryInput_current_by_postal_code_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_current_by_postal_code_units {
+enum queryInput_current_by_points_units {
I
S
}
@@ -3175,7 +3342,7 @@ enum queryInput_current_by_postal_code_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_current_by_station_lang {
+enum queryInput_current_by_postal_code_lang {
ar
az
be
@@ -3214,7 +3381,7 @@ enum queryInput_current_by_station_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_current_by_station_units {
+enum queryInput_current_by_postal_code_units {
I
S
}
@@ -3222,7 +3389,7 @@ enum queryInput_current_by_station_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_current_by_stations_lang {
+enum queryInput_current_by_station_lang {
ar
az
be
@@ -3261,7 +3428,7 @@ enum queryInput_current_by_stations_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_current_by_stations_units {
+enum queryInput_current_by_station_units {
I
S
}
@@ -3269,7 +3436,7 @@ enum queryInput_current_by_stations_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_3hourly_by_city_by_country_lang {
+enum queryInput_current_by_stations_lang {
ar
az
be
@@ -3308,7 +3475,7 @@ enum queryInput_forecast_3hourly_by_city_by_country_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_3hourly_by_city_by_country_units {
+enum queryInput_current_by_stations_units {
I
S
}
@@ -3316,7 +3483,7 @@ enum queryInput_forecast_3hourly_by_city_by_country_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_3hourly_by_city_id_lang {
+enum queryInput_forecast_daily_by_city_by_country_lang {
ar
az
be
@@ -3355,7 +3522,7 @@ enum queryInput_forecast_3hourly_by_city_id_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_3hourly_by_city_id_units {
+enum queryInput_forecast_daily_by_city_by_country_units {
I
S
}
@@ -3363,7 +3530,7 @@ enum queryInput_forecast_3hourly_by_city_id_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_3hourly_by_lat_by_lon_lang {
+enum queryInput_forecast_daily_by_city_id_lang {
ar
az
be
@@ -3402,7 +3569,7 @@ enum queryInput_forecast_3hourly_by_lat_by_lon_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_3hourly_by_lat_by_lon_units {
+enum queryInput_forecast_daily_by_city_id_units {
I
S
}
@@ -3410,7 +3577,7 @@ enum queryInput_forecast_3hourly_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_3hourly_by_postal_code_lang {
+enum queryInput_forecast_daily_by_lat_by_lon_lang {
ar
az
be
@@ -3449,7 +3616,7 @@ enum queryInput_forecast_3hourly_by_postal_code_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_3hourly_by_postal_code_units {
+enum queryInput_forecast_daily_by_lat_by_lon_units {
I
S
}
@@ -3457,7 +3624,7 @@ enum queryInput_forecast_3hourly_by_postal_code_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_daily_by_city_by_country_lang {
+enum queryInput_forecast_daily_by_postal_code_lang {
ar
az
be
@@ -3496,7 +3663,21 @@ enum queryInput_forecast_daily_by_city_by_country_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_daily_by_city_by_country_units {
+enum queryInput_forecast_daily_by_postal_code_units {
+ I
+ S
+}
+
+"""Time period (default: daily)"""
+enum queryInput_forecast_energy_by_lat_by_lon_tp {
+ daily
+ hourly
+}
+
+"""
+Convert to units. Default Metric See units field description
+"""
+enum queryInput_forecast_energy_by_lat_by_lon_units {
I
S
}
@@ -3504,7 +3685,7 @@ enum queryInput_forecast_daily_by_city_by_country_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_daily_by_city_id_lang {
+enum queryInput_forecast_hourly_by_city_by_country_lang {
ar
az
be
@@ -3543,7 +3724,7 @@ enum queryInput_forecast_daily_by_city_id_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_daily_by_city_id_units {
+enum queryInput_forecast_hourly_by_city_by_country_units {
I
S
}
@@ -3551,7 +3732,7 @@ enum queryInput_forecast_daily_by_city_id_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_daily_by_lat_by_lon_lang {
+enum queryInput_forecast_hourly_by_city_id_lang {
ar
az
be
@@ -3590,7 +3771,7 @@ enum queryInput_forecast_daily_by_lat_by_lon_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_daily_by_lat_by_lon_units {
+enum queryInput_forecast_hourly_by_city_id_units {
I
S
}
@@ -3598,7 +3779,7 @@ enum queryInput_forecast_daily_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_daily_by_postal_code_lang {
+enum queryInput_forecast_hourly_by_lat_by_lon_lang {
ar
az
be
@@ -3637,21 +3818,54 @@ enum queryInput_forecast_daily_by_postal_code_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_daily_by_postal_code_units {
+enum queryInput_forecast_hourly_by_lat_by_lon_units {
I
S
}
-"""Time period (default: daily)"""
-enum queryInput_forecast_energy_by_lat_by_lon_tp {
- daily
- hourly
+"""
+Language (Default: English) See language field description
+"""
+enum queryInput_forecast_hourly_by_postal_code_lang {
+ ar
+ az
+ be
+ bg
+ bs
+ ca
+ cs
+ de
+ el
+ es
+ et
+ fi
+ fr
+ hr
+ hu
+ id
+ is
+ it
+ kw
+ nb
+ nl
+ pl
+ pt
+ ro
+ ru
+ sk
+ sl
+ sr
+ sv
+ tr
+ uk
+ zh
+ zh_tw
}
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_energy_by_lat_by_lon_units {
+enum queryInput_forecast_hourly_by_postal_code_units {
I
S
}
@@ -3659,7 +3873,7 @@ enum queryInput_forecast_energy_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_hourly_by_city_by_country_lang {
+enum queryInput_history_daily_by_city_by_country_lang {
ar
az
be
@@ -3698,7 +3912,7 @@ enum queryInput_forecast_hourly_by_city_by_country_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_hourly_by_city_by_country_units {
+enum queryInput_history_daily_by_city_by_country_units {
I
S
}
@@ -3706,7 +3920,7 @@ enum queryInput_forecast_hourly_by_city_by_country_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_hourly_by_city_id_lang {
+enum queryInput_history_daily_by_city_id_lang {
ar
az
be
@@ -3745,7 +3959,7 @@ enum queryInput_forecast_hourly_by_city_id_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_hourly_by_city_id_units {
+enum queryInput_history_daily_by_city_id_units {
I
S
}
@@ -3753,7 +3967,7 @@ enum queryInput_forecast_hourly_by_city_id_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_hourly_by_lat_by_lon_lang {
+enum queryInput_history_daily_by_lat_by_lon_lang {
ar
az
be
@@ -3792,7 +4006,7 @@ enum queryInput_forecast_hourly_by_lat_by_lon_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_hourly_by_lat_by_lon_units {
+enum queryInput_history_daily_by_lat_by_lon_units {
I
S
}
@@ -3800,7 +4014,7 @@ enum queryInput_forecast_hourly_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_forecast_hourly_by_postal_code_lang {
+enum queryInput_history_daily_by_postal_code_lang {
ar
az
be
@@ -3839,7 +4053,7 @@ enum queryInput_forecast_hourly_by_postal_code_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_forecast_hourly_by_postal_code_units {
+enum queryInput_history_daily_by_postal_code_units {
I
S
}
@@ -3847,7 +4061,7 @@ enum queryInput_forecast_hourly_by_postal_code_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_daily_by_city_by_country_lang {
+enum queryInput_history_daily_by_station_lang {
ar
az
be
@@ -3886,7 +4100,22 @@ enum queryInput_history_daily_by_city_by_country_lang {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_daily_by_city_by_country_units {
+enum queryInput_history_daily_by_station_units {
+ I
+ S
+}
+
+"""Time period to aggregate by (daily, monthly)"""
+enum queryInput_history_energy_by_lat_by_lon_tp {
+ daily
+ hourly
+ monthly
+}
+
+"""
+Convert to units. Default Metric See units field description
+"""
+enum queryInput_history_energy_by_lat_by_lon_units {
I
S
}
@@ -3894,7 +4123,7 @@ enum queryInput_history_daily_by_city_by_country_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_daily_by_city_id_lang {
+enum queryInput_history_hourly_by_city_by_country_lang {
ar
az
be
@@ -3930,10 +4159,16 @@ enum queryInput_history_daily_by_city_id_lang {
zh_tw
}
+"""Assume utc (default) or local time for start_date, end_date"""
+enum queryInput_history_hourly_by_city_by_country_tz {
+ local
+ utc
+}
+
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_daily_by_city_id_units {
+enum queryInput_history_hourly_by_city_by_country_units {
I
S
}
@@ -3941,7 +4176,7 @@ enum queryInput_history_daily_by_city_id_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_daily_by_lat_by_lon_lang {
+enum queryInput_history_hourly_by_city_id_lang {
ar
az
be
@@ -3977,10 +4212,16 @@ enum queryInput_history_daily_by_lat_by_lon_lang {
zh_tw
}
+"""Assume utc (default) or local time for start_date, end_date"""
+enum queryInput_history_hourly_by_city_id_tz {
+ local
+ utc
+}
+
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_daily_by_lat_by_lon_units {
+enum queryInput_history_hourly_by_city_id_units {
I
S
}
@@ -3988,7 +4229,7 @@ enum queryInput_history_daily_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_daily_by_postal_code_lang {
+enum queryInput_history_hourly_by_lat_by_lon_lang {
ar
az
be
@@ -4024,10 +4265,16 @@ enum queryInput_history_daily_by_postal_code_lang {
zh_tw
}
+"""Assume utc (default) or local time for start_date, end_date"""
+enum queryInput_history_hourly_by_lat_by_lon_tz {
+ local
+ utc
+}
+
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_daily_by_postal_code_units {
+enum queryInput_history_hourly_by_lat_by_lon_units {
I
S
}
@@ -4035,7 +4282,7 @@ enum queryInput_history_daily_by_postal_code_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_daily_by_station_lang {
+enum queryInput_history_hourly_by_postal_code_lang {
ar
az
be
@@ -4071,33 +4318,69 @@ enum queryInput_history_daily_by_station_lang {
zh_tw
}
+"""Assume utc (default) or local time for start_date, end_date"""
+enum queryInput_history_hourly_by_postal_code_tz {
+ local
+ utc
+}
+
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_daily_by_station_units {
+enum queryInput_history_hourly_by_postal_code_units {
I
S
}
"""
-Convert to units. Default Metric See units field description
+Language (Default: English) See language field description
"""
-enum queryInput_history_energy_bbox_by_lat1_by_lon1_by_lat2_by_lon2_units {
- I
- S
+enum queryInput_history_hourly_by_station_lang {
+ ar
+ az
+ be
+ bg
+ bs
+ ca
+ cs
+ de
+ el
+ es
+ et
+ fi
+ fr
+ hr
+ hu
+ id
+ is
+ it
+ kw
+ nb
+ nl
+ pl
+ pt
+ ro
+ ru
+ sk
+ sl
+ sr
+ sv
+ tr
+ uk
+ zh
+ zh_tw
}
-"""Time period to aggregate by (daily, monthly)"""
-enum queryInput_history_energy_by_lat_by_lon_tp {
- daily
- hourly
- monthly
+"""Assume utc (default) or local time for start_date, end_date"""
+enum queryInput_history_hourly_by_station_tz {
+ local
+ utc
}
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_energy_by_lat_by_lon_units {
+enum queryInput_history_hourly_by_station_units {
I
S
}
@@ -4105,7 +4388,7 @@ enum queryInput_history_energy_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_hourly_by_city_by_country_lang {
+enum queryInput_history_subhourly_by_city_by_country_lang {
ar
az
be
@@ -4142,7 +4425,7 @@ enum queryInput_history_hourly_by_city_by_country_lang {
}
"""Assume utc (default) or local time for start_date, end_date"""
-enum queryInput_history_hourly_by_city_by_country_tz {
+enum queryInput_history_subhourly_by_city_by_country_tz {
local
utc
}
@@ -4150,7 +4433,7 @@ enum queryInput_history_hourly_by_city_by_country_tz {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_hourly_by_city_by_country_units {
+enum queryInput_history_subhourly_by_city_by_country_units {
I
S
}
@@ -4158,7 +4441,7 @@ enum queryInput_history_hourly_by_city_by_country_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_hourly_by_city_id_lang {
+enum queryInput_history_subhourly_by_city_id_lang {
ar
az
be
@@ -4195,7 +4478,7 @@ enum queryInput_history_hourly_by_city_id_lang {
}
"""Assume utc (default) or local time for start_date, end_date"""
-enum queryInput_history_hourly_by_city_id_tz {
+enum queryInput_history_subhourly_by_city_id_tz {
local
utc
}
@@ -4203,7 +4486,7 @@ enum queryInput_history_hourly_by_city_id_tz {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_hourly_by_city_id_units {
+enum queryInput_history_subhourly_by_city_id_units {
I
S
}
@@ -4211,7 +4494,7 @@ enum queryInput_history_hourly_by_city_id_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_hourly_by_lat_by_lon_lang {
+enum queryInput_history_subhourly_by_lat_by_lon_lang {
ar
az
be
@@ -4248,7 +4531,7 @@ enum queryInput_history_hourly_by_lat_by_lon_lang {
}
"""Assume utc (default) or local time for start_date, end_date"""
-enum queryInput_history_hourly_by_lat_by_lon_tz {
+enum queryInput_history_subhourly_by_lat_by_lon_tz {
local
utc
}
@@ -4256,7 +4539,7 @@ enum queryInput_history_hourly_by_lat_by_lon_tz {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_hourly_by_lat_by_lon_units {
+enum queryInput_history_subhourly_by_lat_by_lon_units {
I
S
}
@@ -4264,7 +4547,7 @@ enum queryInput_history_hourly_by_lat_by_lon_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_hourly_by_postal_code_lang {
+enum queryInput_history_subhourly_by_postal_code_lang {
ar
az
be
@@ -4301,7 +4584,7 @@ enum queryInput_history_hourly_by_postal_code_lang {
}
"""Assume utc (default) or local time for start_date, end_date"""
-enum queryInput_history_hourly_by_postal_code_tz {
+enum queryInput_history_subhourly_by_postal_code_tz {
local
utc
}
@@ -4309,7 +4592,7 @@ enum queryInput_history_hourly_by_postal_code_tz {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_hourly_by_postal_code_units {
+enum queryInput_history_subhourly_by_postal_code_units {
I
S
}
@@ -4317,7 +4600,7 @@ enum queryInput_history_hourly_by_postal_code_units {
"""
Language (Default: English) See language field description
"""
-enum queryInput_history_hourly_by_station_lang {
+enum queryInput_history_subhourly_by_station_lang {
ar
az
be
@@ -4354,7 +4637,7 @@ enum queryInput_history_hourly_by_station_lang {
}
"""Assume utc (default) or local time for start_date, end_date"""
-enum queryInput_history_hourly_by_station_tz {
+enum queryInput_history_subhourly_by_station_tz {
local
utc
}
@@ -4362,7 +4645,7 @@ enum queryInput_history_hourly_by_station_tz {
"""
Convert to units. Default Metric See units field description
"""
-enum queryInput_history_hourly_by_station_units {
+enum queryInput_history_subhourly_by_station_units {
I
S
}
@@ -4378,7 +4661,7 @@ type query_current_by_cities_data_items_weather {
icon: String
}
-type query_forecast_3hourly_by_city_by_country_data_items_weather {
+type query_forecast_daily_by_city_by_country_data_items_weather {
"""Weather Condition code"""
code: String
@@ -4389,7 +4672,7 @@ type query_forecast_3hourly_by_city_by_country_data_items_weather {
icon: String
}
-type query_forecast_daily_by_city_by_country_data_items_weather {
+type query_forecast_hourly_by_city_by_country_data_items_weather {
"""Weather Condition code"""
code: String
diff --git a/examples/openapi-orbit/tests/__snapshots__/orbit.test.js.snap b/examples/openapi-orbit/tests/__snapshots__/orbit.test.js.snap
index fd7f1354b4654..d2403f565cbef 100644
--- a/examples/openapi-orbit/tests/__snapshots__/orbit.test.js.snap
+++ b/examples/openapi-orbit/tests/__snapshots__/orbit.test.js.snap
@@ -154,10 +154,14 @@ type Query @globalOptions(sourceName: "Orbit", endpoint: "https://app.orbit.love
"Get all workspaces for the current user"
workspaces: workspaces_200_response @httpOperation(path: "/workspaces", operationSpecificHeaders: "{\\"accept\\":\\"application/json\\"}", httpMethod: GET)
"Get a workspace"
- workspaces_by_workspace_slug(workspace_slug: String!): workspaces_by_workspace_slug_200_response @httpOperation(path: "/workspaces/{args.workspace_slug}", operationSpecificHeaders: "{\\"accept\\":\\"application/json\\"}", httpMethod: GET)
+ workspaces_by_workspace_slug(
+ workspace_slug: String!
+ "Include the number of members by Orbit Level in the attributes"
+ include_orbit_level_counts: Boolean
+ ): workspaces_by_workspace_slug_200_response @httpOperation(path: "/workspaces/{args.workspace_slug}", operationSpecificHeaders: "{\\"accept\\":\\"application/json\\"}", httpMethod: GET, queryParamArgMap: "{\\"include_orbit_level_counts\\":\\"include_orbit_level_counts\\"}")
}
-type user_200_response @example(value: "{\\"data\\":{\\"id\\":\\"O4NFxZ\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"MelHagenesDDS\\",\\"updated_at\\":\\"2023-02-08T12:13:55.509Z\\",\\"created_at\\":\\"2023-02-08T12:13:55.509Z\\",\\"email\\":\\"maria@lang.co\\"}}}") {
+type user_200_response @example(value: "{\\"data\\":{\\"id\\":\\"Ze1FV4\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"MrsHellenCorkery\\",\\"updated_at\\":\\"2023-02-28T19:20:37.508Z\\",\\"created_at\\":\\"2023-02-28T19:20:37.508Z\\",\\"email\\":\\"pia.hettinger@zulauf.name\\"}}}") {
data: query_user_data
}
@@ -180,7 +184,7 @@ scalar DateTime
"A field whose value conforms to the standard internet email address format as specified in RFC822: https://www.w3.org/Protocols/rfc822/."
scalar EmailAddress @specifiedBy(url: "https://www.w3.org/Protocols/rfc822/")
-type workspace_slug_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"63rsLp\\",\\"type\\":\\"issue_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-08T12:13:56.110Z\\",\\"key\\":\\"omar/trinaskiles#58\\",\\"occurred_at\\":\\"2023-02-08T12:13:56.106Z\\",\\"updated_at\\":\\"2023-02-08T12:13:56.110Z\\",\\"type\\":\\"IssueActivity\\",\\"properties\\":{\\"github_issue\\":\\"omar/trinaskiles/#58\\",\\"github_repository\\":\\"omar/trinaskiles\\",\\"github_organization\\":\\"omar\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:omar\\",\\"github_repository:omar/trinaskiles\\",\\"github_issue:omar/trinaskiles/#58\\"],\\"orbit_url\\":\\"http://localhost:3000/missrorybosco/activities/63rsLp\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Cool issue title!\\",\\"g_number\\":58,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-08T13:13:56.106+01:00\\",\\"is_pull_request\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"la4sVD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"jP8TMj\\",\\"type\\":\\"repository\\"}}}},{\\"id\\":\\"V5YsvV\\",\\"type\\":\\"pull_request_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-08T12:13:56.054Z\\",\\"key\\":\\"hong/guy#68\\",\\"occurred_at\\":\\"2023-02-08T12:13:56.047Z\\",\\"updated_at\\":\\"2023-02-08T12:13:56.054Z\\",\\"type\\":\\"PullRequestActivity\\",\\"properties\\":{\\"github_repository\\":\\"hong/guy\\",\\"github_organization\\":\\"hong\\",\\"github_pull_request\\":\\"hong/guy/#68\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:hong\\",\\"github_repository:hong/guy\\",\\"github_pull_request:hong/guy/#68\\"],\\"orbit_url\\":\\"http://localhost:3000/missrorybosco/activities/V5YsvV\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Cool PR title!\\",\\"g_number\\":68,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-08T13:13:56.047+01:00\\",\\"is_pull_request\\":null,\\"g_merged\\":true,\\"g_merged_at\\":null,\\"g_merged_by\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"lnrs0l\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"6l3Tz9\\",\\"type\\":\\"repository\\"}}}},{\\"id\\":\\"6a4sBp\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-08T12:13:55.980Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-08T12:13:55.979Z\\",\\"updated_at\\":\\"2023-02-08T12:13:55.980Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/missrorybosco/activities/6a4sBp\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"D2Esq5\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"jBlTg9\\",\\"type\\":\\"repository\\"}}}}],\\"included\\":[{\\"id\\":\\"la4sVD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Opened an issue\\",\\"short_name\\":\\"Issue opened\\",\\"key\\":\\"issues:opened\\",\\"channel\\":\\"github\\",\\"source\\":\\"github\\",\\"weight\\":\\"6.0\\"}},{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:13:55.937Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"MissMackenzieWyman\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"missmackenziewyman\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:13:55.937Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/missrorybosco/members/missmackenziewyman\\",\\"created\\":false,\\"id\\":\\"By3S5j\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"jP8TMj\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"keith\\",\\"name\\":\\"shirleyboehm\\",\\"full_name\\":\\"keith/shirleyboehm\\",\\"updated_at\\":\\"2023-02-08T12:13:56.104Z\\",\\"created_at\\":\\"2023-02-08T12:13:56.104Z\\"}},{\\"id\\":\\"lnrs0l\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"present Mysource 3\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:1\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"6l3Tz9\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"amandaschaefer\\",\\"name\\":\\"tajuana\\",\\"full_name\\":\\"amandaschaefer/tajuana\\",\\"updated_at\\":\\"2023-02-08T12:13:56.037Z\\",\\"created_at\\":\\"2023-02-08T12:13:56.037Z\\"}},{\\"id\\":\\"D2Esq5\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"conspire Mysource 2\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec_activity_type_key\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"jBlTg9\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"jillianbins\\",\\"name\\":\\"terencedietrich\\",\\"full_name\\":\\"orbit-love/orbit-model\\",\\"updated_at\\":\\"2023-02-08T12:13:55.961Z\\",\\"created_at\\":\\"2023-02-08T12:13:55.961Z\\"}}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/missrorybosco/activities?activity_type=&affiliation=&cities%5B%5D=&company%5B%5D=&countries%5B%5D=&direction=DESC&end_date=&filters=true&identity=&items=10&member_tags=&orbit=&page=1®ions%5B%5D=&relative=&sort=occurred_at&start_date=&title%5B%5D=&workspace=missrorybosco\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"63rsLp\\",\\"type\\":\\"issue_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-28T19:20:38.155Z\\",\\"key\\":\\"makeda/eugenio#9\\",\\"occurred_at\\":\\"2023-02-28T19:20:38.152Z\\",\\"updated_at\\":\\"2023-02-28T19:20:38.155Z\\",\\"type\\":\\"IssueActivity\\",\\"properties\\":{\\"github_issue\\":\\"makeda/eugenio/#9\\",\\"github_repository\\":\\"makeda/eugenio\\",\\"github_organization\\":\\"makeda\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:makeda\\",\\"github_repository:makeda/eugenio\\",\\"github_issue:makeda/eugenio/#9\\"],\\"orbit_url\\":\\"http://localhost:3000/stacierau/activities/63rsLp\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Cool issue title!\\",\\"g_number\\":9,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-28T20:20:38.152+01:00\\",\\"is_pull_request\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"la4sVD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"jP8TMj\\",\\"type\\":\\"repository\\"}}}},{\\"id\\":\\"V5YsvV\\",\\"type\\":\\"pull_request_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-28T19:20:38.097Z\\",\\"key\\":\\"carlos/julianfisher#92\\",\\"occurred_at\\":\\"2023-02-28T19:20:38.088Z\\",\\"updated_at\\":\\"2023-02-28T19:20:38.097Z\\",\\"type\\":\\"PullRequestActivity\\",\\"properties\\":{\\"github_repository\\":\\"carlos/julianfisher\\",\\"github_organization\\":\\"carlos\\",\\"github_pull_request\\":\\"carlos/julianfisher/#92\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:carlos\\",\\"github_repository:carlos/julianfisher\\",\\"github_pull_request:carlos/julianfisher/#92\\"],\\"orbit_url\\":\\"http://localhost:3000/stacierau/activities/V5YsvV\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Cool PR title!\\",\\"g_number\\":92,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-28T20:20:38.088+01:00\\",\\"is_pull_request\\":null,\\"g_merged\\":true,\\"g_merged_at\\":null,\\"g_merged_by\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"lnrs0l\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"6l3Tz9\\",\\"type\\":\\"repository\\"}}}},{\\"id\\":\\"6a4sBp\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-28T19:20:38.013Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-28T19:20:38.011Z\\",\\"updated_at\\":\\"2023-02-28T19:20:38.013Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/stacierau/activities/6a4sBp\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"D2Esq5\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"jBlTg9\\",\\"type\\":\\"repository\\"}}}}],\\"included\\":[{\\"id\\":\\"la4sVD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Opened an issue\\",\\"short_name\\":\\"Issue opened\\",\\"key\\":\\"issues:opened\\",\\"channel\\":\\"github\\",\\"source\\":\\"github\\",\\"weight\\":\\"6.0\\"}},{\\"id\\":\\"By3S5j\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:37.968Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"WaylonOsinski\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"waylonosinski\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:37.968Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/stacierau/members/waylonosinski\\",\\"created\\":false,\\"id\\":\\"By3S5j\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"jP8TMj\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"karitremblay\\",\\"name\\":\\"alia\\",\\"full_name\\":\\"karitremblay/alia\\",\\"updated_at\\":\\"2023-02-28T19:20:38.151Z\\",\\"created_at\\":\\"2023-02-28T19:20:38.151Z\\"}},{\\"id\\":\\"lnrs0l\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"praise Mysource 3\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:1\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"6l3Tz9\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"cedric\\",\\"name\\":\\"heike\\",\\"full_name\\":\\"cedric/heike\\",\\"updated_at\\":\\"2023-02-28T19:20:38.078Z\\",\\"created_at\\":\\"2023-02-28T19:20:38.078Z\\"}},{\\"id\\":\\"D2Esq5\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"win Mysource 2\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec_activity_type_key\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"jBlTg9\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"jacintoraynor\\",\\"name\\":\\"natalya\\",\\"full_name\\":\\"orbit-love/orbit-model\\",\\"updated_at\\":\\"2023-02-28T19:20:37.992Z\\",\\"created_at\\":\\"2023-02-28T19:20:37.992Z\\"}}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/stacierau/activities?activity_type=&affiliation=&cities%5B%5D=&company%5B%5D=&countries%5B%5D=&direction=DESC&end_date=&filters=true&identity=&items=10&member_tags=&orbit=&page=1®ions%5B%5D=&relative=&sort=occurred_at&start_date=&title%5B%5D=&workspace=stacierau\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_activities_data_items]
included: [query_workspace_slug_activities_included_items]
links: query_workspace_slug_activities_links
@@ -285,46 +289,46 @@ enum queryInput_workspace_slug_activities_affiliation {
"Comma separated list of activity types"
enum queryInput_workspace_slug_activities_activity_type {
- tweet_sent @enum(value: "\\"tweet:sent\\"")
- twitter_followed @enum(value: "\\"twitter:followed\\"")
- dev_comment @enum(value: "\\"dev:comment\\"")
discourse_topic_created @enum(value: "\\"discourse:topic:created\\"")
- custom_happened @enum(value: "\\"custom:happened\\"")
- insided_article_replied @enum(value: "\\"insided:article:replied\\"")
- insided_article_created @enum(value: "\\"insided:article:created\\"")
- insided_conversation_replied @enum(value: "\\"insided:conversation:replied\\"")
- insided_conversation_started @enum(value: "\\"insided:conversation:started\\"")
- insided_idea_replied @enum(value: "\\"insided:idea:replied\\"")
- insided_question_asked @enum(value: "\\"insided:question:asked\\"")
- insided_question_replied @enum(value: "\\"insided:question:replied\\"")
- discourse_post_created @enum(value: "\\"discourse:post:created\\"")
discourse_post_liked @enum(value: "\\"discourse:post:liked\\"")
discourse_user_created @enum(value: "\\"discourse:user:created\\"")
- reddit_comment @enum(value: "\\"reddit:comment\\"")
- reddit_post @enum(value: "\\"reddit:post\\"")
- insided_idea_submitted @enum(value: "\\"insided:idea:submitted\\"")
- stackoverflow_question @enum(value: "\\"stackoverflow:question\\"")
- youtube_comment @enum(value: "\\"youtube:comment\\"")
- linkedin_comment @enum(value: "\\"linkedin:comment\\"")
- stackoverflow_answer @enum(value: "\\"stackoverflow:answer\\"")
+ discourse_post_created @enum(value: "\\"discourse:post:created\\"")
slack_message_sent @enum(value: "\\"slack:message:sent\\"")
slack_thread_replied @enum(value: "\\"slack:thread:replied\\"")
slack_channel_joined @enum(value: "\\"slack:channel:joined\\"")
note_created @enum(value: "\\"note:created\\"")
post_created @enum(value: "\\"post:created\\"")
+ issues_opened @enum(value: "\\"issues:opened\\"")
discord_message_sent @enum(value: "\\"discord:message:sent\\"")
+ issue_comment_created @enum(value: "\\"issue_comment:created\\"")
discord_thread_replied @enum(value: "\\"discord:thread:replied\\"")
+ custom_happened @enum(value: "\\"custom:happened\\"")
+ dev_comment @enum(value: "\\"dev:comment\\"")
discord_message_replied @enum(value: "\\"discord:message:replied\\"")
discord_server_joined @enum(value: "\\"discord:server:joined\\"")
- issues_opened @enum(value: "\\"issues:opened\\"")
- issue_comment_created @enum(value: "\\"issue_comment:created\\"")
- pull_requests_opened @enum(value: "\\"pull_requests:opened\\"")
- pull_requests_merged @enum(value: "\\"pull_requests:merged\\"")
+ insided_conversation_started @enum(value: "\\"insided:conversation:started\\"")
fork_created @enum(value: "\\"fork:created\\"")
- star_created @enum(value: "\\"star:created\\"")
+ insided_idea_replied @enum(value: "\\"insided:idea:replied\\"")
+ insided_article_created @enum(value: "\\"insided:article:created\\"")
discussions_discussion_created @enum(value: "\\"discussions:discussion_created\\"")
+ insided_question_replied @enum(value: "\\"insided:question:replied\\"")
discussions_comment @enum(value: "\\"discussions:comment\\"")
discussions_reply @enum(value: "\\"discussions:reply\\"")
+ insided_article_replied @enum(value: "\\"insided:article:replied\\"")
+ insided_question_asked @enum(value: "\\"insided:question:asked\\"")
+ insided_conversation_replied @enum(value: "\\"insided:conversation:replied\\"")
+ insided_idea_submitted @enum(value: "\\"insided:idea:submitted\\"")
+ reddit_comment @enum(value: "\\"reddit:comment\\"")
+ reddit_post @enum(value: "\\"reddit:post\\"")
+ stackoverflow_answer @enum(value: "\\"stackoverflow:answer\\"")
+ linkedin_comment @enum(value: "\\"linkedin:comment\\"")
+ pull_requests_opened @enum(value: "\\"pull_requests:opened\\"")
+ pull_requests_merged @enum(value: "\\"pull_requests:merged\\"")
+ star_created @enum(value: "\\"star:created\\"")
+ stackoverflow_question @enum(value: "\\"stackoverflow:question\\"")
+ tweet_sent @enum(value: "\\"tweet:sent\\"")
+ twitter_followed @enum(value: "\\"twitter:followed\\"")
+ youtube_comment @enum(value: "\\"youtube:comment\\"")
}
enum queryInput_workspace_slug_activities_identity {
@@ -354,7 +358,7 @@ enum queryInput_workspace_slug_activities_sort {
member
}
-type workspace_slug_activities_by_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"ZPosjV\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-08T12:13:58.331Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-08T12:13:58.323Z\\",\\"updated_at\\":\\"2023-02-08T12:13:58.331Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/rosegraham/activities/ZPosjV\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"D3jsky\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"rmMSRr\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"9ABTo6\\",\\"type\\":\\"repository\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"Zw6Fa3\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"D3jsky\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"hoax Mysource 29\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:9\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"rmMSRr\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:13:58.329Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"BradleyTerry\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"bradleyterry\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:13:58.329Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/rosegraham/members/bradleyterry\\",\\"created\\":false,\\"id\\":\\"rmMSRr\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"9ABTo6\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"soon\\",\\"name\\":\\"je\\",\\"full_name\\":\\"soon/je\\",\\"updated_at\\":\\"2023-02-08T12:13:58.287Z\\",\\"created_at\\":\\"2023-02-08T12:13:58.287Z\\"}},{\\"id\\":\\"Zw6Fa3\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"YanBartonMD\\",\\"updated_at\\":\\"2023-02-08T12:13:58.266Z\\",\\"created_at\\":\\"2023-02-08T12:13:58.260Z\\"}}]}") {
+type workspace_slug_activities_by_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"ZPosjV\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-28T19:20:40.750Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-28T19:20:40.744Z\\",\\"updated_at\\":\\"2023-02-28T19:20:40.750Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/jamatremblaymd/activities/ZPosjV\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"D3jsky\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"rmMSRr\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"9ABTo6\\",\\"type\\":\\"repository\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"OA3F51\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"D3jsky\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"savvy Mysource 29\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:9\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"rmMSRr\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:40.748Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"KelleeMcLaughlin\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"kelleemclaughlin\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:40.748Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/jamatremblaymd/members/kelleemclaughlin\\",\\"created\\":false,\\"id\\":\\"rmMSRr\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"9ABTo6\\",\\"type\\":\\"repository\\",\\"attributes\\":{\\"owner\\":\\"corneliusokon\\",\\"name\\":\\"morristremblay\\",\\"full_name\\":\\"corneliusokon/morristremblay\\",\\"updated_at\\":\\"2023-02-28T19:20:40.713Z\\",\\"created_at\\":\\"2023-02-28T19:20:40.713Z\\"}},{\\"id\\":\\"OA3F51\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"ErvinReilly\\",\\"updated_at\\":\\"2023-02-28T19:20:40.695Z\\",\\"created_at\\":\\"2023-02-28T19:20:40.691Z\\"}}]}") {
data: query_workspace_slug_activities_by_id_data
included: [query_workspace_slug_activities_by_id_included_items]
}
@@ -442,7 +446,7 @@ type query_workspace_slug_activities_by_id_included_items_attributes {
weight: String
}
-type workspace_slug_activity_types_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"5Gds1O\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Created content\\",\\"short_name\\":\\"Content created\\",\\"key\\":\\"post:created\\",\\"channel\\":\\"content\\",\\"source\\":\\"content\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"DOnsmL\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Activated their account on product\\",\\"short_name\\":\\"Activated account\\",\\"key\\":\\"activated_account\\",\\"channel\\":\\"product\\",\\"source\\":\\"product\\",\\"weight\\":\\"6.0\\"}}],\\"links\\":{\\"first\\":\\"/luigiwiegand/activity_types?page=1\\",\\"last\\":\\"/luigiwiegand/activity_types?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_activity_types_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"5Gds1O\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Created content\\",\\"short_name\\":\\"Content created\\",\\"key\\":\\"post:created\\",\\"channel\\":\\"content\\",\\"source\\":\\"content\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"DOnsmL\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Activated their account on product\\",\\"short_name\\":\\"Activated account\\",\\"key\\":\\"activated_account\\",\\"channel\\":\\"product\\",\\"source\\":\\"product\\",\\"weight\\":\\"6.0\\"}}],\\"links\\":{\\"first\\":\\"/mrsdaronpowlowski/activity_types?page=1\\",\\"last\\":\\"/mrsdaronpowlowski/activity_types?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_activity_types_data_items]
links: query_workspace_slug_activity_types_links
}
@@ -469,7 +473,7 @@ type query_workspace_slug_activity_types_links {
next: Void
}
-type workspace_slug_members_by_member_slug_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"VlEsOe\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-08T12:14:02.147Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-08T12:14:02.145Z\\",\\"updated_at\\":\\"2023-02-08T12:14:02.147Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/zelmahartmannv/activities/VlEsOe\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"oQQsBb\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BloSvr\\",\\"type\\":\\"member\\"}}}}],\\"included\\":[{\\"id\\":\\"oQQsBb\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"choose Mysource 34\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:activity\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"BloSvr\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:02.085Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"MissRandyHuel\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"missrandyhuel\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:02.085Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/zelmahartmannv/members/missrandyhuel\\",\\"created\\":false,\\"id\\":\\"BloSvr\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}}],\\"links\\":{\\"first\\":\\"/zelmahartmannv/members/missrandyhuel/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=spec%3Aactivity&type=\\",\\"last\\":\\"/zelmahartmannv/members/missrandyhuel/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=spec%3Aactivity&type=\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_members_by_member_slug_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"VlEsOe\\",\\"type\\":\\"spec_activity\\",\\"attributes\\":{\\"action\\":\\"spec_action\\",\\"created_at\\":\\"2023-02-28T19:20:45.066Z\\",\\"key\\":\\"clé\\",\\"occurred_at\\":\\"2023-02-28T19:20:45.064Z\\",\\"updated_at\\":\\"2023-02-28T19:20:45.066Z\\",\\"type\\":\\"SpecActivity\\",\\"properties\\":{\\"prop_1\\":\\"value_1\\",\\"prop_2\\":\\"value_2\\"},\\"tags\\":[\\"spec-tag-1\\",\\"spec-tag-2\\"],\\"orbit_url\\":\\"http://localhost:3000/deangelokovacek/activities/VlEsOe\\",\\"weight\\":\\"1.0\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"oQQsBb\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BloSvr\\",\\"type\\":\\"member\\"}}}}],\\"included\\":[{\\"id\\":\\"oQQsBb\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"calculate Mysource 34\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:activity\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"BloSvr\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:45.004Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"LoiseRoberts\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"loiseroberts\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:45.004Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/deangelokovacek/members/loiseroberts\\",\\"created\\":false,\\"id\\":\\"BloSvr\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}}],\\"links\\":{\\"first\\":\\"/deangelokovacek/members/loiseroberts/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=spec%3Aactivity&type=\\",\\"last\\":\\"/deangelokovacek/members/loiseroberts/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=spec%3Aactivity&type=\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_members_by_member_slug_activities_data_items]
included: [query_workspace_slug_members_by_member_slug_activities_included_items]
links: query_workspace_slug_members_by_member_slug_activities_links
@@ -561,7 +565,7 @@ enum queryInput_workspace_slug_members_by_member_slug_activities_sort {
member
}
-type workspace_slug_members_by_member_slug_notes_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"o5Nf2J\\",\\"type\\":\\"note\\",\\"attributes\\":{\\"id\\":\\"o5Nf2J\\",\\"created_at\\":\\"2023-02-08T12:14:06.213Z\\",\\"body\\":\\"heyo\\",\\"updated_at\\":\\"2023-02-08T12:14:06.213Z\\"},\\"relationships\\":{\\"member\\":{\\"data\\":{\\"id\\":\\"jPESm8\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"DdQF6V\\",\\"type\\":\\"user\\"}}}}],\\"included\\":[{\\"id\\":\\"jPESm8\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:06.196Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"LeeHeidenreich\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"leeheidenreich\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:06.196Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/shaniquagutmann/members/leeheidenreich\\",\\"created\\":false,\\"id\\":\\"jPESm8\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"DdQF6V\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"LuigiWuckert\\",\\"updated_at\\":\\"2023-02-08T12:14:06.212Z\\",\\"created_at\\":\\"2023-02-08T12:14:06.206Z\\"}}],\\"links\\":{\\"first\\":\\"/shaniquagutmann/members/leeheidenreich/notes?page=1\\",\\"last\\":\\"/shaniquagutmann/members/leeheidenreich/notes?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_members_by_member_slug_notes_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"o5Nf2J\\",\\"type\\":\\"note\\",\\"attributes\\":{\\"id\\":\\"o5Nf2J\\",\\"created_at\\":\\"2023-02-28T19:20:49.147Z\\",\\"body\\":\\"heyo\\",\\"updated_at\\":\\"2023-02-28T19:20:49.147Z\\"},\\"relationships\\":{\\"member\\":{\\"data\\":{\\"id\\":\\"jPESm8\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"lqAFn8\\",\\"type\\":\\"user\\"}}}}],\\"included\\":[{\\"id\\":\\"jPESm8\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:49.130Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"ClydeHirtheII\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"clydehirtheii\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:49.130Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/misstyreecorkery/members/clydehirtheii\\",\\"created\\":false,\\"id\\":\\"jPESm8\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"lqAFn8\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"MrsDominicaLabadie\\",\\"updated_at\\":\\"2023-02-28T19:20:49.145Z\\",\\"created_at\\":\\"2023-02-28T19:20:49.139Z\\"}}],\\"links\\":{\\"first\\":\\"/misstyreecorkery/members/clydehirtheii/notes?page=1\\",\\"last\\":\\"/misstyreecorkery/members/clydehirtheii/notes?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_members_by_member_slug_notes_data_items]
included: [query_workspace_slug_members_by_member_slug_notes_included_items]
links: query_workspace_slug_members_by_member_slug_notes_links
@@ -678,7 +682,7 @@ type query_workspace_slug_members_by_member_slug_notes_links {
next: Void
}
-type workspace_slug_members_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"jaPSJy\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:06.631Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Sally\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"sally\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:06.641Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/misssergiooconnell/members/sally\\",\\"created\\":false,\\"id\\":\\"jaPSJy\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":\\"2023-02-06T12:14:06.730Z\\",\\"last_activity_occurred_at\\":\\"2023-02-08T11:14:06.754Z\\",\\"activities_count\\":2,\\"activities_score\\":2,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"5geTxn\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"aXwFQn\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"4EzSdZ\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:06.616Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Josh\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"josh\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:06.624Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/misssergiooconnell/members/josh\\",\\"created\\":false,\\"id\\":\\"4EzSdZ\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":\\"2023-01-31T12:14:06.708Z\\",\\"last_activity_occurred_at\\":\\"2023-02-04T12:14:06.649Z\\",\\"activities_count\\":3,\\"activities_score\\":3,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"nbWTe1\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}}],\\"included\\":[{\\"id\\":\\"43\\",\\"type\\":\\"spec_identity\\"},{\\"id\\":\\"aXwFQn\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"aXwFQn\\",\\"name\\":\\"JonellLockman\\",\\"website\\":\\"https://example-1.com\\",\\"members_count\\":4,\\"employees_count\\":0,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":0,\\"facebook\\":null,\\"facebook_followers\\":0,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-08T12:14:06.809Z\\",\\"updated_at\\":\\"2023-02-08T12:14:06.809Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}},{\\"id\\":\\"42\\",\\"type\\":\\"spec_identity\\"}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/misssergiooconnell/members?activities_count_max=99&activities_count_min=1&activity_type=type%3Anew%2Cspec%3Aactivity&affiliation=&cities%5B%5D=&company%5B%5D=&countries%5B%5D=&direction=DESC&end_date=&identity=&items=10&member_tags=ruby%7Crails%2C-go&orbit=&page=1&query=®ions%5B%5D=&relative=&sort=last_activity&start_date=&title%5B%5D=&workspace=misssergiooconnell\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_members_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"jaPSJy\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:49.655Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Sally\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"sally\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:49.663Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/vanstroman/members/sally\\",\\"created\\":false,\\"id\\":\\"jaPSJy\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":\\"2023-02-26T19:20:49.764Z\\",\\"last_activity_occurred_at\\":\\"2023-02-28T18:20:49.806Z\\",\\"activities_count\\":2,\\"activities_score\\":2,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"5geTxn\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"aWQFAB\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"4EzSdZ\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:49.635Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Josh\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"josh\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"ruby\\"],\\"tags\\":[\\"ruby\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:49.643Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/vanstroman/members/josh\\",\\"created\\":false,\\"id\\":\\"4EzSdZ\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":\\"2023-02-20T19:20:49.737Z\\",\\"last_activity_occurred_at\\":\\"2023-02-24T19:20:49.668Z\\",\\"activities_count\\":3,\\"activities_score\\":3,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"nbWTe1\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}}],\\"included\\":[{\\"id\\":\\"43\\",\\"type\\":\\"spec_identity\\"},{\\"id\\":\\"aWQFAB\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"aWQFAB\\",\\"name\\":\\"MitchelHeaney\\",\\"website\\":\\"example-1.com\\",\\"members_count\\":1,\\"employees_count\\":null,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":null,\\"facebook\\":null,\\"facebook_followers\\":null,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-28T19:20:49.844Z\\",\\"updated_at\\":\\"2023-02-28T19:20:49.844Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}},{\\"id\\":\\"42\\",\\"type\\":\\"spec_identity\\"}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/vanstroman/members?activities_count_max=99&activities_count_min=1&activity_type=type%3Anew%2Cspec%3Aactivity&affiliation=&cities%5B%5D=&company%5B%5D=&countries%5B%5D=&direction=DESC&end_date=&identity=&items=10&member_tags=ruby%7Crails%2C-go&orbit=&page=1&query=®ions%5B%5D=&relative=&sort=last_activity&start_date=&title%5B%5D=&workspace=vanstroman\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_members_data_items]
included: [query_workspace_slug_members_included_items]
links: query_workspace_slug_members_links
@@ -776,46 +780,46 @@ enum queryInput_workspace_slug_members_affiliation {
"Comma separated list of activity types"
enum queryInput_workspace_slug_members_activity_type {
- tweet_sent @enum(value: "\\"tweet:sent\\"")
- twitter_followed @enum(value: "\\"twitter:followed\\"")
- dev_comment @enum(value: "\\"dev:comment\\"")
discourse_topic_created @enum(value: "\\"discourse:topic:created\\"")
- custom_happened @enum(value: "\\"custom:happened\\"")
- insided_article_replied @enum(value: "\\"insided:article:replied\\"")
- insided_article_created @enum(value: "\\"insided:article:created\\"")
- insided_conversation_replied @enum(value: "\\"insided:conversation:replied\\"")
- insided_conversation_started @enum(value: "\\"insided:conversation:started\\"")
- insided_idea_replied @enum(value: "\\"insided:idea:replied\\"")
- insided_question_asked @enum(value: "\\"insided:question:asked\\"")
- insided_question_replied @enum(value: "\\"insided:question:replied\\"")
- discourse_post_created @enum(value: "\\"discourse:post:created\\"")
discourse_post_liked @enum(value: "\\"discourse:post:liked\\"")
discourse_user_created @enum(value: "\\"discourse:user:created\\"")
- reddit_comment @enum(value: "\\"reddit:comment\\"")
- reddit_post @enum(value: "\\"reddit:post\\"")
- insided_idea_submitted @enum(value: "\\"insided:idea:submitted\\"")
- stackoverflow_question @enum(value: "\\"stackoverflow:question\\"")
- youtube_comment @enum(value: "\\"youtube:comment\\"")
- linkedin_comment @enum(value: "\\"linkedin:comment\\"")
- stackoverflow_answer @enum(value: "\\"stackoverflow:answer\\"")
+ discourse_post_created @enum(value: "\\"discourse:post:created\\"")
slack_message_sent @enum(value: "\\"slack:message:sent\\"")
slack_thread_replied @enum(value: "\\"slack:thread:replied\\"")
slack_channel_joined @enum(value: "\\"slack:channel:joined\\"")
note_created @enum(value: "\\"note:created\\"")
post_created @enum(value: "\\"post:created\\"")
+ issues_opened @enum(value: "\\"issues:opened\\"")
discord_message_sent @enum(value: "\\"discord:message:sent\\"")
+ issue_comment_created @enum(value: "\\"issue_comment:created\\"")
discord_thread_replied @enum(value: "\\"discord:thread:replied\\"")
+ custom_happened @enum(value: "\\"custom:happened\\"")
+ dev_comment @enum(value: "\\"dev:comment\\"")
discord_message_replied @enum(value: "\\"discord:message:replied\\"")
discord_server_joined @enum(value: "\\"discord:server:joined\\"")
- issues_opened @enum(value: "\\"issues:opened\\"")
- issue_comment_created @enum(value: "\\"issue_comment:created\\"")
- pull_requests_opened @enum(value: "\\"pull_requests:opened\\"")
- pull_requests_merged @enum(value: "\\"pull_requests:merged\\"")
+ insided_conversation_started @enum(value: "\\"insided:conversation:started\\"")
fork_created @enum(value: "\\"fork:created\\"")
- star_created @enum(value: "\\"star:created\\"")
+ insided_idea_replied @enum(value: "\\"insided:idea:replied\\"")
+ insided_article_created @enum(value: "\\"insided:article:created\\"")
discussions_discussion_created @enum(value: "\\"discussions:discussion_created\\"")
+ insided_question_replied @enum(value: "\\"insided:question:replied\\"")
discussions_comment @enum(value: "\\"discussions:comment\\"")
discussions_reply @enum(value: "\\"discussions:reply\\"")
+ insided_article_replied @enum(value: "\\"insided:article:replied\\"")
+ insided_question_asked @enum(value: "\\"insided:question:asked\\"")
+ insided_conversation_replied @enum(value: "\\"insided:conversation:replied\\"")
+ insided_idea_submitted @enum(value: "\\"insided:idea:submitted\\"")
+ reddit_comment @enum(value: "\\"reddit:comment\\"")
+ reddit_post @enum(value: "\\"reddit:post\\"")
+ stackoverflow_answer @enum(value: "\\"stackoverflow:answer\\"")
+ linkedin_comment @enum(value: "\\"linkedin:comment\\"")
+ pull_requests_opened @enum(value: "\\"pull_requests:opened\\"")
+ pull_requests_merged @enum(value: "\\"pull_requests:merged\\"")
+ star_created @enum(value: "\\"star:created\\"")
+ stackoverflow_question @enum(value: "\\"stackoverflow:question\\"")
+ tweet_sent @enum(value: "\\"tweet:sent\\"")
+ twitter_followed @enum(value: "\\"twitter:followed\\"")
+ youtube_comment @enum(value: "\\"youtube:comment\\"")
}
enum queryInput_workspace_slug_members_identity {
@@ -858,7 +862,7 @@ enum queryInput_workspace_slug_members_sort {
updated_at
}
-type workspace_slug_members_by_member_slug_200_response @example(value: "{\\"data\\":{\\"id\\":\\"jWXSAW\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:12.392Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Josh\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"josh\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:12.392Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/deonpowlowski/members/josh\\",\\"created\\":false,\\"id\\":\\"jWXSAW\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"nZRTEE\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"VMGFxn\\",\\"type\\":\\"organization\\"}]}}},\\"included\\":[{\\"id\\":\\"90\\",\\"type\\":\\"spec_identity\\"},{\\"id\\":\\"VMGFxn\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"VMGFxn\\",\\"name\\":\\"KeliBergstrom\\",\\"website\\":\\"https://example-25.com\\",\\"members_count\\":2,\\"employees_count\\":0,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":0,\\"facebook\\":null,\\"facebook_followers\\":0,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-08T12:14:12.403Z\\",\\"updated_at\\":\\"2023-02-08T12:14:12.403Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}}]}") {
+type workspace_slug_members_by_member_slug_200_response @example(value: "{\\"data\\":{\\"id\\":\\"jWXSAW\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:56.012Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Josh\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"josh\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:56.012Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/mrsroytoy/members/josh\\",\\"created\\":false,\\"id\\":\\"jWXSAW\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"nZRTEE\\",\\"type\\":\\"spec_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"BqkFva\\",\\"type\\":\\"organization\\"}]}}},\\"included\\":[{\\"id\\":\\"90\\",\\"type\\":\\"spec_identity\\"},{\\"id\\":\\"BqkFva\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"BqkFva\\",\\"name\\":\\"ReubenMcGlynn\\",\\"website\\":\\"example-25.com\\",\\"members_count\\":1,\\"employees_count\\":null,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":null,\\"facebook\\":null,\\"facebook_followers\\":null,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-28T19:20:56.022Z\\",\\"updated_at\\":\\"2023-02-28T19:20:56.022Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}}]}") {
data: query_workspace_slug_members_by_member_slug_data
included: [query_workspace_slug_members_by_member_slug_included_items]
}
@@ -944,7 +948,7 @@ type query_workspace_slug_members_by_member_slug_included_items {
union workspace_slug_members_find_response @statusCodeTypeName(statusCode: 200, typeName: "workspace_slug_members_find_200_response") @statusCodeTypeName(statusCode: 404, typeName: "workspace_slug_members_find_404_response") = workspace_slug_members_find_200_response | workspace_slug_members_find_404_response
-type workspace_slug_members_find_200_response @example(value: "{\\"data\\":{\\"id\\":\\"rRxS6X\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:23.726Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"KoreyWill\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"koreywill\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:23.726Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/danutaoreilly/members/koreywill\\",\\"created\\":false,\\"id\\":\\"rRxS6X\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"1JrTad\\",\\"type\\":\\"github_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}},\\"included\\":[{\\"id\\":\\"1JrTad\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"uid-82\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}}]}") {
+type workspace_slug_members_find_200_response @example(value: "{\\"data\\":{\\"id\\":\\"rRxS6X\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:21:07.970Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"MrsChiCummerata\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"mrschicummerata\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:21:07.970Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/glendaschmidt/members/mrschicummerata\\",\\"created\\":false,\\"id\\":\\"rRxS6X\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"1JrTad\\",\\"type\\":\\"github_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}},\\"included\\":[{\\"id\\":\\"1JrTad\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"uid-82\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}}]}") {
data: query_workspace_slug_members_find_oneOf_0_data
included: [query_workspace_slug_members_find_oneOf_0_included_items]
}
@@ -1037,7 +1041,7 @@ type workspace_slug_members_find_404_response @example(value: "{\\"errors\\":\\"
errors: String
}
-type workspace_slug_organizations_by_organization_id_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"pjLsLQ\\",\\"type\\":\\"discord_message_sent_activity\\",\\"attributes\\":{\\"action\\":\\"sent\\",\\"created_at\\":\\"2023-02-08T12:14:24.405Z\\",\\"key\\":\\"8181400685\\",\\"occurred_at\\":\\"2023-02-07T12:14:24.366Z\\",\\"updated_at\\":\\"2023-02-08T12:14:24.405Z\\",\\"type\\":\\"DiscordMessageSentActivity\\",\\"properties\\":{\\"discord_server\\":\\"Orbit-Sandbox\\",\\"discord_channel\\":\\"general\\"},\\"tags\\":[\\"channel:discord\\",\\"discord_server:Orbit Sandbox\\",\\"discord_channel:general\\"],\\"orbit_url\\":\\"http://localhost:3000/isabellabahringerphd/activities/pjLsLQ\\",\\"weight\\":\\"0.5\\",\\"activity_link\\":\\"https://discord.com/channels/823735870825037844/823735870825037847/8181400685\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\"}}}},{\\"id\\":\\"6ARs9g\\",\\"type\\":\\"discord_message_sent_activity\\",\\"attributes\\":{\\"action\\":\\"sent\\",\\"created_at\\":\\"2023-02-08T12:14:24.500Z\\",\\"key\\":\\"1224350866\\",\\"occurred_at\\":\\"2023-02-06T12:14:24.481Z\\",\\"updated_at\\":\\"2023-02-08T12:14:24.500Z\\",\\"type\\":\\"DiscordMessageSentActivity\\",\\"properties\\":{\\"discord_server\\":\\"Orbit-Sandbox\\",\\"discord_channel\\":\\"general\\"},\\"tags\\":[\\"channel:discord\\",\\"discord_server:Orbit Sandbox\\",\\"discord_channel:general\\"],\\"orbit_url\\":\\"http://localhost:3000/isabellabahringerphd/activities/6ARs9g\\",\\"weight\\":\\"0.5\\",\\"activity_link\\":\\"https://discord.com/channels/823735870825037844/823735870825037847/1224350866\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"r9nSZ9\\",\\"type\\":\\"member\\"}}}},{\\"id\\":\\"VWesGO\\",\\"type\\":\\"github_activity\\",\\"attributes\\":{\\"action\\":\\"created\\",\\"created_at\\":\\"2023-02-08T12:14:24.464Z\\",\\"key\\":\\"github_activity_key:9\\",\\"occurred_at\\":\\"2023-02-05T12:14:24.416Z\\",\\"updated_at\\":\\"2023-02-08T12:14:24.464Z\\",\\"type\\":\\"GithubActivity\\",\\"properties\\":{\\"github_repository\\":\\"margarett/donny\\",\\"github_organization\\":\\"margarett\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:margarett\\",\\"github_repository:margarett/donny\\"],\\"orbit_url\\":\\"http://localhost:3000/isabellabahringerphd/activities/VWesGO\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/margarett/donny\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"owxs43\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"9mPTrn\\",\\"type\\":\\"repository\\"}}}}],\\"included\\":[{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Sent a message in Discord\\",\\"short_name\\":\\"Discord message\\",\\"key\\":\\"discord:message:sent\\",\\"channel\\":\\"discord\\",\\"source\\":\\"discord\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:24.359Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"John Doe\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"john-doe\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:24.359Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/isabellabahringerphd/members/john-doe\\",\\"created\\":false,\\"id\\":\\"BwNSO9\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"ao4F7b\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"r9nSZ9\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:24.475Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Jane Smith\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"jane-smith\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:24.475Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/isabellabahringerphd/members/jane-smith\\",\\"created\\":false,\\"id\\":\\"r9nSZ9\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"ao4F7b\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"owxs43\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"rest Mysource 101\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:13\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}}],\\"links\\":{\\"first\\":\\"/isabellabahringerphd/organizations/ao4F7b/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=\\",\\"last\\":\\"/isabellabahringerphd/organizations/ao4F7b/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_organizations_by_organization_id_activities_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"pjLsLQ\\",\\"type\\":\\"discord_message_sent_activity\\",\\"attributes\\":{\\"action\\":\\"sent\\",\\"created_at\\":\\"2023-02-28T19:21:08.732Z\\",\\"key\\":\\"9224118976\\",\\"occurred_at\\":\\"2023-02-27T19:21:08.701Z\\",\\"updated_at\\":\\"2023-02-28T19:21:08.732Z\\",\\"type\\":\\"DiscordMessageSentActivity\\",\\"properties\\":{\\"discord_server\\":\\"Orbit-Sandbox\\",\\"discord_channel\\":\\"general\\"},\\"tags\\":[\\"channel:discord\\",\\"discord_server:Orbit Sandbox\\",\\"discord_channel:general\\"],\\"orbit_url\\":\\"http://localhost:3000/trinaspencerii/activities/pjLsLQ\\",\\"weight\\":\\"0.5\\",\\"activity_link\\":\\"https://discord.com/channels/823735870825037844/823735870825037847/9224118976\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\"}}}},{\\"id\\":\\"6ARs9g\\",\\"type\\":\\"discord_message_sent_activity\\",\\"attributes\\":{\\"action\\":\\"sent\\",\\"created_at\\":\\"2023-02-28T19:21:08.838Z\\",\\"key\\":\\"9839402447\\",\\"occurred_at\\":\\"2023-02-26T19:21:08.817Z\\",\\"updated_at\\":\\"2023-02-28T19:21:08.838Z\\",\\"type\\":\\"DiscordMessageSentActivity\\",\\"properties\\":{\\"discord_server\\":\\"Orbit-Sandbox\\",\\"discord_channel\\":\\"general\\"},\\"tags\\":[\\"channel:discord\\",\\"discord_server:Orbit Sandbox\\",\\"discord_channel:general\\"],\\"orbit_url\\":\\"http://localhost:3000/trinaspencerii/activities/6ARs9g\\",\\"weight\\":\\"0.5\\",\\"activity_link\\":\\"https://discord.com/channels/823735870825037844/823735870825037847/9839402447\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"r9nSZ9\\",\\"type\\":\\"member\\"}}}},{\\"id\\":\\"VWesGO\\",\\"type\\":\\"github_activity\\",\\"attributes\\":{\\"action\\":\\"created\\",\\"created_at\\":\\"2023-02-28T19:21:08.797Z\\",\\"key\\":\\"github_activity_key:9\\",\\"occurred_at\\":\\"2023-02-25T19:21:08.747Z\\",\\"updated_at\\":\\"2023-02-28T19:21:08.797Z\\",\\"type\\":\\"GithubActivity\\",\\"properties\\":{\\"github_repository\\":\\"buckhudson/nadinequigley\\",\\"github_organization\\":\\"buckhudson\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:buckhudson\\",\\"github_repository:buckhudson/nadinequigley\\"],\\"orbit_url\\":\\"http://localhost:3000/trinaspencerii/activities/VWesGO\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/buckhudson/nadinequigley\\"},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"owxs43\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"9mPTrn\\",\\"type\\":\\"repository\\"}}}}],\\"included\\":[{\\"id\\":\\"DzaseX\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Sent a message in Discord\\",\\"short_name\\":\\"Discord message\\",\\"key\\":\\"discord:message:sent\\",\\"channel\\":\\"discord\\",\\"source\\":\\"discord\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"BwNSO9\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:21:08.692Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"John Doe\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"john-doe\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:21:08.692Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/trinaspencerii/members/john-doe\\",\\"created\\":false,\\"id\\":\\"BwNSO9\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"nb0FmD\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"r9nSZ9\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:21:08.809Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"Jane Smith\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"jane-smith\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:21:08.809Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/trinaspencerii/members/jane-smith\\",\\"created\\":false,\\"id\\":\\"r9nSZ9\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"nb0FmD\\",\\"type\\":\\"organization\\"}]}}},{\\"id\\":\\"owxs43\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"send Mysource 101\\",\\"short_name\\":\\"Spec Channel\\",\\"key\\":\\"spec:happened:13\\",\\"channel\\":\\"mysource\\",\\"source\\":\\"mysource\\",\\"weight\\":\\"1.0\\"}}],\\"links\\":{\\"first\\":\\"/trinaspencerii/organizations/nb0FmD/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=\\",\\"last\\":\\"/trinaspencerii/organizations/nb0FmD/activities?page=1&direction=DESC&items=10&sort=occurred_at&activity_type=\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_organizations_by_organization_id_activities_data_items]
included: [query_workspace_slug_organizations_by_organization_id_activities_included_items]
links: query_workspace_slug_organizations_by_organization_id_activities_links
@@ -1140,7 +1144,7 @@ enum queryInput_workspace_slug_organizations_by_organization_id_activities_activ
twitter
}
-type workspace_slug_organizations_by_organization_id_members_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"jPESdn\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"id\\":\\"jPESdn\\",\\"slug\\":\\"jane-smith\\",\\"name\\":\\"Jane Smith\\",\\"last_activity_occurred_at\\":null,\\"activities_score\\":0},\\"relationships\\":{}},{\\"id\\":\\"jYbS8E\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"id\\":\\"jYbS8E\\",\\"slug\\":\\"john-doe\\",\\"name\\":\\"John Doe\\",\\"last_activity_occurred_at\\":null,\\"activities_score\\":0},\\"relationships\\":{}}],\\"links\\":{\\"first\\":\\"/mitchellgrimes/organizations/V02F9A/members?page=1&items=10\\",\\"last\\":\\"/mitchellgrimes/organizations/V02F9A/members?page=1&items=10\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_organizations_by_organization_id_members_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"jPESdn\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"id\\":\\"jPESdn\\",\\"slug\\":\\"jane-smith\\",\\"name\\":\\"Jane Smith\\",\\"last_activity_occurred_at\\":null,\\"activities_score\\":0},\\"relationships\\":{}},{\\"id\\":\\"jYbS8E\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"id\\":\\"jYbS8E\\",\\"slug\\":\\"john-doe\\",\\"name\\":\\"John Doe\\",\\"last_activity_occurred_at\\":null,\\"activities_score\\":0},\\"relationships\\":{}}],\\"links\\":{\\"first\\":\\"/staceybayer/organizations/ao4F7b/members?page=1&items=10\\",\\"last\\":\\"/staceybayer/organizations/ao4F7b/members?page=1&items=10\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_organizations_by_organization_id_members_data_items]
links: query_workspace_slug_organizations_by_organization_id_members_links
}
@@ -1173,7 +1177,7 @@ enum queryInput_workspace_slug_organizations_by_organization_id_members_items {
_100 @enum(value: "\\"100\\"")
}
-type workspace_slug_organizations_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"n9WF12\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"n9WF12\\",\\"name\\":\\"Organization2\\",\\"website\\":\\"org2.example.com\\",\\"members_count\\":1,\\"employees_count\\":0,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":0,\\"facebook\\":null,\\"facebook_followers\\":0,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-08T12:14:27.289Z\\",\\"updated_at\\":\\"2023-02-08T12:14:27.289Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}},{\\"id\\":\\"a3mFGr\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"a3mFGr\\",\\"name\\":\\"Organization1\\",\\"website\\":\\"org1.example.com\\",\\"members_count\\":1,\\"employees_count\\":0,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":0,\\"facebook\\":null,\\"facebook_followers\\":0,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-08T12:14:27.285Z\\",\\"updated_at\\":\\"2023-02-08T12:14:27.285Z\\",\\"lifecycle_stage\\":\\"customer\\",\\"deal_closed_date\\":\\"2023-02-08T12:14:27.305Z\\",\\"price_plan\\":\\"Enterprise\\",\\"crm_uid\\":\\"abcde123451\\",\\"crm_url\\":\\"https://example.com/1\\",\\"owner_name\\":\\"John Toto\\",\\"owner_email\\":\\"john.toto@example.com\\",\\"source\\":\\"Fake CRM\\"}}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/alexiswill/organizations?direction=DESC&items=10&page=1&query=&sort=name&workspace=alexiswill\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_organizations_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"nAeF3p\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"nAeF3p\\",\\"name\\":\\"Organization2\\",\\"website\\":\\"org2.example.com\\",\\"members_count\\":1,\\"employees_count\\":null,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":null,\\"facebook\\":null,\\"facebook_followers\\":null,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-28T19:21:11.655Z\\",\\"updated_at\\":\\"2023-02-28T19:21:11.655Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}},{\\"id\\":\\"n27FjR\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"n27FjR\\",\\"name\\":\\"Organization1\\",\\"website\\":\\"org1.example.com\\",\\"members_count\\":1,\\"employees_count\\":null,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":null,\\"facebook\\":null,\\"facebook_followers\\":null,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-28T19:21:11.652Z\\",\\"updated_at\\":\\"2023-02-28T19:21:11.652Z\\",\\"lifecycle_stage\\":\\"customer\\",\\"deal_closed_date\\":\\"2023-02-28T19:21:11.668Z\\",\\"price_plan\\":\\"Enterprise\\",\\"crm_uid\\":\\"abcde123451\\",\\"crm_url\\":\\"https://example.com/1\\",\\"owner_name\\":\\"John Toto\\",\\"owner_email\\":\\"john.toto@example.com\\",\\"source\\":\\"Fake CRM\\"}}],\\"links\\":{\\"first\\":\\"http://localhost:3000/api/v1/bartonbrakus/organizations?direction=DESC&items=10&page=1&query=&sort=name&workspace=bartonbrakus\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_organizations_data_items]
links: query_workspace_slug_organizations_links
}
@@ -1189,16 +1193,16 @@ type query_workspace_slug_organizations_data_items_attributes {
name: String
website: String
members_count: Int
- employees_count: Int
+ employees_count: Void
organization_type: Void
industry: Void
estimated_annual_revenue: Void
founded_in: Void
location: Void
twitter: Void
- twitter_followers: Int
+ twitter_followers: Void
facebook: Void
- facebook_followers: Int
+ facebook_followers: Void
linkedin: Void
crunchbase: Void
email_addresses: Void
@@ -1240,7 +1244,7 @@ enum queryInput_workspace_slug_organizations_sort {
employees_count
}
-type workspace_slug_organizations_by_organization_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"nb0FpD\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"nb0FpD\\",\\"name\\":\\"Organization1\\",\\"website\\":\\"https://example-47.com\\",\\"members_count\\":1,\\"employees_count\\":0,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":0,\\"facebook\\":null,\\"facebook_followers\\":0,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-08T12:14:27.773Z\\",\\"updated_at\\":\\"2023-02-08T12:14:27.773Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}}}") {
+type workspace_slug_organizations_by_organization_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"VlOFP7\\",\\"type\\":\\"organization\\",\\"attributes\\":{\\"id\\":\\"VlOFP7\\",\\"name\\":\\"Organization1\\",\\"website\\":\\"example-47.com\\",\\"members_count\\":1,\\"employees_count\\":null,\\"organization_type\\":null,\\"industry\\":null,\\"estimated_annual_revenue\\":null,\\"founded_in\\":null,\\"location\\":null,\\"twitter\\":null,\\"twitter_followers\\":null,\\"facebook\\":null,\\"facebook_followers\\":null,\\"linkedin\\":null,\\"crunchbase\\":null,\\"email_addresses\\":null,\\"last_active\\":null,\\"active_since\\":null,\\"created_at\\":\\"2023-02-28T19:21:12.080Z\\",\\"updated_at\\":\\"2023-02-28T19:21:12.080Z\\",\\"lifecycle_stage\\":null,\\"deal_closed_date\\":null,\\"price_plan\\":null,\\"crm_uid\\":null,\\"crm_url\\":null,\\"owner_name\\":null,\\"owner_email\\":null,\\"source\\":null}}}") {
data: query_workspace_slug_organizations_by_organization_id_data
}
@@ -1253,18 +1257,18 @@ type query_workspace_slug_organizations_by_organization_id_data {
type query_workspace_slug_organizations_by_organization_id_data_attributes {
id: String
name: String
- website: URL
+ website: String
members_count: Int
- employees_count: Int
+ employees_count: Void
organization_type: Void
industry: Void
estimated_annual_revenue: Void
founded_in: Void
location: Void
twitter: Void
- twitter_followers: Int
+ twitter_followers: Void
facebook: Void
- facebook_followers: Int
+ facebook_followers: Void
linkedin: Void
crunchbase: Void
email_addresses: Void
@@ -1282,7 +1286,7 @@ type query_workspace_slug_organizations_by_organization_id_data_attributes {
source: Void
}
-type workspace_slug_reports_200_response @example(value: "{\\"data\\":{\\"id\\":\\"PEateX\\",\\"type\\":\\"statistics\\",\\"attributes\\":{\\"workspace_id\\":\\"PEateX\\",\\"timeframe\\":{\\"start_date\\":\\"2023-01-09\\",\\"end_date\\":\\"2023-02-08\\",\\"start_date_last\\":\\"2022-12-09\\",\\"end_date_last\\":\\"2023-01-08\\"},\\"overview\\":{\\"total_members_count\\":1,\\"members_on_orbit_level_1_count\\":0,\\"members_on_orbit_level_2_count\\":0,\\"members_on_orbit_level_3_count\\":0,\\"members_on_orbit_level_4_count\\":0,\\"members_on_orbit_level_none_count\\":1},\\"members\\":{\\"active_count\\":1,\\"active_delta\\":0,\\"new_count\\":1,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0},\\"activities\\":{\\"total_count\\":1,\\"total_delta\\":0,\\"spec:activity\\":{\\"source\\":\\"mysource\\",\\"count\\":1,\\"delta\\":0,\\"members\\":{\\"active_count\\":1,\\"active_delta\\":0,\\"new_count\\":1,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0}},\\"foo:activity\\":{\\"source\\":\\"mysource\\",\\"count\\":0,\\"delta\\":0,\\"members\\":{\\"active_count\\":0,\\"active_delta\\":0,\\"new_count\\":0,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0}}}}}}") {
+type workspace_slug_reports_200_response @example(value: "{\\"data\\":{\\"id\\":\\"1XOtmn\\",\\"type\\":\\"statistics\\",\\"attributes\\":{\\"workspace_id\\":\\"1XOtmn\\",\\"timeframe\\":{\\"start_date\\":\\"2023-01-29\\",\\"end_date\\":\\"2023-02-28\\",\\"start_date_last\\":\\"2022-12-29\\",\\"end_date_last\\":\\"2023-01-28\\"},\\"overview\\":{\\"total_members_count\\":1,\\"members_on_orbit_level_1_count\\":0,\\"members_on_orbit_level_2_count\\":0,\\"members_on_orbit_level_3_count\\":0,\\"members_on_orbit_level_4_count\\":0,\\"members_on_orbit_level_none_count\\":1},\\"members\\":{\\"active_count\\":1,\\"active_delta\\":0,\\"new_count\\":1,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0},\\"activities\\":{\\"total_count\\":1,\\"total_delta\\":0,\\"spec:activity\\":{\\"source\\":\\"mysource\\",\\"count\\":1,\\"delta\\":0,\\"members\\":{\\"active_count\\":1,\\"active_delta\\":0,\\"new_count\\":1,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0}},\\"foo:activity\\":{\\"source\\":\\"mysource\\",\\"count\\":0,\\"delta\\":0,\\"members\\":{\\"active_count\\":0,\\"active_delta\\":0,\\"new_count\\":0,\\"new_delta\\":0,\\"returning_count\\":0,\\"returning_delta\\":0}}}}}}") {
data: query_workspace_slug_reports_data
}
@@ -1367,7 +1371,7 @@ type query_workspace_slug_reports_data_attributes_activities_foo_activity_member
returning_delta: Int
}
-type workspace_slug_webhooks_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"6qyFL6\\",\\"type\\":\\"webhook\\",\\"attributes\\":{\\"name\\":\\"My Test Webhook\\",\\"enabled\\":true,\\"updated_at\\":\\"2023-02-08T12:14:30.027Z\\",\\"created_at\\":\\"2023-02-08T12:14:30.027Z\\",\\"event_type\\":\\"activity:created\\",\\"url\\":\\"https://example.com/hook\\",\\"activity_types\\":[],\\"activity_tags\\":[],\\"member_tags\\":[],\\"activity_keywords\\":[],\\"include_teammates\\":false}}],\\"links\\":{\\"first\\":\\"/fake-workspace/webhooks?page=1\\",\\"last\\":\\"/fake-workspace/webhooks?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
+type workspace_slug_webhooks_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"6qyFL6\\",\\"type\\":\\"webhook\\",\\"attributes\\":{\\"name\\":\\"My Test Webhook\\",\\"enabled\\":true,\\"updated_at\\":\\"2023-02-28T19:21:14.379Z\\",\\"created_at\\":\\"2023-02-28T19:21:14.379Z\\",\\"event_type\\":\\"activity:created\\",\\"url\\":\\"https://example.com/hook\\",\\"activity_types\\":[],\\"activity_tags\\":[],\\"member_tags\\":[],\\"activity_keywords\\":[],\\"include_teammates\\":false}}],\\"links\\":{\\"first\\":\\"/fake-workspace/webhooks?page=1\\",\\"last\\":\\"/fake-workspace/webhooks?page=1\\",\\"prev\\":null,\\"next\\":null}}") {
data: [query_workspace_slug_webhooks_data_items]
links: query_workspace_slug_webhooks_links
}
@@ -1399,7 +1403,7 @@ type query_workspace_slug_webhooks_links {
next: Void
}
-type workspace_slug_webhooks_by_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"6ZbFM6\\",\\"type\\":\\"webhook\\",\\"attributes\\":{\\"name\\":\\"My Test Webhook\\",\\"enabled\\":true,\\"updated_at\\":\\"2023-02-08T12:14:30.408Z\\",\\"created_at\\":\\"2023-02-08T12:14:30.408Z\\",\\"event_type\\":\\"activity:created\\",\\"url\\":\\"https://example.com/hook\\",\\"activity_types\\":[],\\"activity_tags\\":[],\\"member_tags\\":[],\\"activity_keywords\\":[],\\"include_teammates\\":false}}}") {
+type workspace_slug_webhooks_by_id_200_response @example(value: "{\\"data\\":{\\"id\\":\\"6ZbFM6\\",\\"type\\":\\"webhook\\",\\"attributes\\":{\\"name\\":\\"My Test Webhook\\",\\"enabled\\":true,\\"updated_at\\":\\"2023-02-28T19:21:14.909Z\\",\\"created_at\\":\\"2023-02-28T19:21:14.909Z\\",\\"event_type\\":\\"activity:created\\",\\"url\\":\\"https://example.com/hook\\",\\"activity_types\\":[],\\"activity_tags\\":[],\\"member_tags\\":[],\\"activity_keywords\\":[],\\"include_teammates\\":false}}}") {
data: query_workspace_slug_webhooks_by_id_data
}
@@ -1423,7 +1427,7 @@ type query_workspace_slug_webhooks_by_id_data_attributes {
include_teammates: Boolean
}
-type workspaces_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"Pnkt5Z\\",\\"type\\":\\"workspace\\",\\"attributes\\":{\\"name\\":\\"Fake Workspace\\",\\"slug\\":\\"fake-workspace\\",\\"updated_at\\":\\"2023-02-08T12:14:30.930Z\\",\\"created_at\\":\\"2023-02-08T12:14:30.923Z\\"},\\"relationships\\":{\\"repositories\\":{\\"data\\":[]}}}],\\"included\\":[]}") {
+type workspaces_200_response @example(value: "{\\"data\\":[{\\"id\\":\\"15Vt67\\",\\"type\\":\\"workspace\\",\\"attributes\\":{\\"name\\":\\"Fake Workspace\\",\\"slug\\":\\"fake-workspace\\",\\"updated_at\\":\\"2023-02-28T19:21:15.565Z\\",\\"created_at\\":\\"2023-02-28T19:21:15.556Z\\"},\\"relationships\\":{\\"repositories\\":{\\"data\\":[]}}}],\\"included\\":[]}") {
data: [query_workspaces_data_items]
included: [JSON]
}
@@ -1450,7 +1454,7 @@ type query_workspaces_data_items_relationships_repositories {
data: [JSON]
}
-type workspaces_by_workspace_slug_200_response @example(value: "{\\"data\\":{\\"id\\":\\"1q7txX\\",\\"type\\":\\"workspace\\",\\"attributes\\":{\\"name\\":\\"Fake Workspace\\",\\"slug\\":\\"fake-workspace\\",\\"updated_at\\":\\"2023-02-08T12:14:31.103Z\\",\\"created_at\\":\\"2023-02-08T12:14:31.034Z\\",\\"members_count\\":1,\\"activities_count\\":1,\\"tags\\":{}},\\"relationships\\":{\\"last_member\\":{\\"data\\":{\\"id\\":\\"rbeSAZ\\",\\"type\\":\\"member\\"}},\\"last_activity\\":{\\"data\\":{\\"id\\":\\"Ze3s3X\\",\\"type\\":\\"pull_request_activity\\"}},\\"repositories\\":{\\"data\\":[]}}},\\"included\\":[{\\"id\\":\\"rbeSAZ\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:31.085Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"JudeRunolfsdottir\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"juderunolfsdottir\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:31.085Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/fake-workspace/members/juderunolfsdottir\\",\\"created\\":false,\\"id\\":\\"rbeSAZ\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"Ze3s3X\\",\\"type\\":\\"pull_request_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-08T12:14:31.087Z\\",\\"key\\":\\"daviswaters/patti#88\\",\\"occurred_at\\":\\"2023-02-08T12:14:31.078Z\\",\\"updated_at\\":\\"2023-02-08T12:14:31.087Z\\",\\"type\\":\\"PullRequestActivity\\",\\"properties\\":{\\"github_repository\\":\\"daviswaters/patti\\",\\"github_organization\\":\\"daviswaters\\",\\"github_pull_request\\":\\"daviswaters/patti/#88\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:daviswaters\\",\\"github_repository:daviswaters/patti\\",\\"github_pull_request:daviswaters/patti/#88\\"],\\"orbit_url\\":\\"http://localhost:3000/fake-workspace/activities/Ze3s3X\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Here is some new code\\",\\"g_number\\":88,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-08T13:14:31.078+01:00\\",\\"is_pull_request\\":null,\\"g_merged\\":false,\\"g_merged_at\\":null,\\"g_merged_by\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"5MxsRE\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"rbeSAZ\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"jOZTW6\\",\\"type\\":\\"repository\\"}}}}]}") {
+type workspaces_by_workspace_slug_200_response @example(value: "{\\"data\\":{\\"id\\":\\"PvetbL\\",\\"type\\":\\"workspace\\",\\"attributes\\":{\\"name\\":\\"Fake Workspace\\",\\"slug\\":\\"fake-workspace\\",\\"updated_at\\":\\"2023-02-28T19:21:15.916Z\\",\\"created_at\\":\\"2023-02-28T19:21:15.825Z\\",\\"members_count\\":1,\\"activities_count\\":1,\\"tags\\":{},\\"orbit_level_counts\\":{\\"1\\":0,\\"2\\":0,\\"3\\":1,\\"4\\":2}},\\"relationships\\":{\\"last_member\\":{\\"data\\":{\\"id\\":\\"rmMS98\\",\\"type\\":\\"member\\"}},\\"last_activity\\":{\\"data\\":{\\"id\\":\\"ZPosrL\\",\\"type\\":\\"pull_request_activity\\"}},\\"repositories\\":{\\"data\\":[]}}},\\"included\\":[{\\"id\\":\\"rmMS98\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:21:15.894Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"RobertoRunolfsdottir\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"robertorunolfsdottir\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:21:15.894Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/fake-workspace/members/robertorunolfsdottir\\",\\"created\\":false,\\"id\\":\\"rmMS98\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"ZPosrL\\",\\"type\\":\\"pull_request_activity\\",\\"attributes\\":{\\"action\\":\\"opened\\",\\"created_at\\":\\"2023-02-28T19:21:15.896Z\\",\\"key\\":\\"carol/donnette#53\\",\\"occurred_at\\":\\"2023-02-28T19:21:15.886Z\\",\\"updated_at\\":\\"2023-02-28T19:21:15.896Z\\",\\"type\\":\\"PullRequestActivity\\",\\"properties\\":{\\"github_repository\\":\\"carol/donnette\\",\\"github_organization\\":\\"carol\\",\\"github_pull_request\\":\\"carol/donnette/#53\\"},\\"tags\\":[\\"channel:github\\",\\"github_organization:carol\\",\\"github_repository:carol/donnette\\",\\"github_pull_request:carol/donnette/#53\\"],\\"orbit_url\\":\\"http://localhost:3000/fake-workspace/activities/ZPosrL\\",\\"weight\\":\\"1.0\\",\\"activity_link\\":\\"https://github.com/\\",\\"g_title\\":\\"Here is some new code\\",\\"g_number\\":53,\\"g_html_url\\":\\"https://github.com/\\",\\"g_created_at\\":\\"2023-02-28T20:21:15.886+01:00\\",\\"is_pull_request\\":null,\\"g_merged\\":false,\\"g_merged_at\\":null,\\"g_merged_by\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"oWVsm9\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"rmMS98\\",\\"type\\":\\"member\\"}},\\"repository\\":{\\"data\\":{\\"id\\":\\"6eeTk6\\",\\"type\\":\\"repository\\"}}}}]}") {
data: query_workspaces_by_workspace_slug_data
included: [query_workspaces_by_workspace_slug_included_items]
}
@@ -1470,6 +1474,14 @@ type query_workspaces_by_workspace_slug_data_attributes {
members_count: Int
activities_count: Int
tags: JSON
+ orbit_level_counts: query_workspaces_by_workspace_slug_data_attributes_orbit_level_counts
+}
+
+type query_workspaces_by_workspace_slug_data_attributes_orbit_level_counts {
+ _1: Int @resolveRootField(field: "1")
+ _2: Int @resolveRootField(field: "2")
+ _3: Int @resolveRootField(field: "3")
+ _4: Int @resolveRootField(field: "4")
}
type query_workspaces_by_workspace_slug_data_relationships {
@@ -1599,7 +1611,7 @@ type Mutation {
union post_workspace_slug_activities_response @statusCodeTypeName(statusCode: 201, typeName: "post_workspace_slug_activities_201_response") @statusCodeTypeName(statusCode: 422, typeName: "post_workspace_slug_activities_422_response") = post_workspace_slug_activities_201_response | post_workspace_slug_activities_422_response
-type post_workspace_slug_activities_201_response @example(value: "{\\"data\\":{\\"id\\":\\"6zoslV\\",\\"type\\":\\"custom_activity\\",\\"attributes\\":{\\"action\\":\\"happened\\",\\"created_at\\":\\"2023-02-08T12:13:59.261Z\\",\\"key\\":\\"thing-123\\",\\"occurred_at\\":\\"2023-02-08T12:13:59.257Z\\",\\"updated_at\\":\\"2023-02-08T12:13:59.261Z\\",\\"type\\":\\"CustomActivity\\",\\"properties\\":{},\\"tags\\":[\\"product\\",\\"enterprise\\",\\"channel:custom\\",\\"custom_type:custom-type\\",\\"custom_title:did-a-thing\\"],\\"orbit_url\\":\\"http://localhost:3000/kayleeleuschke/activities/6zoslV\\",\\"weight\\":\\"0.2\\",\\"custom_description\\":\\"More info about the thing\\",\\"custom_link\\":\\"http://link.com/\\",\\"custom_link_text\\":\\"See the thing\\",\\"custom_title\\":\\"Did a thing\\",\\"custom_type\\":\\"custom-type\\",\\"custom_context\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"r9nS0B\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"ZvWFaW\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Something happened\\",\\"short_name\\":\\"Custom\\",\\"key\\":\\"custom:happened\\",\\"channel\\":\\"custom\\",\\"source\\":\\"custom\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"3YETv3\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":\\"45297280\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":\\"Josh Dzielak\\",\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"r9nS0B\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"https://pbs.twimg.com/profile_images/1110162582143406080/vu7_kN8f.png\\",\\"bio\\":\\"dzello.com/blog/2020/05/3… Co-founder & CTO @OrbitModel · advocate for dev advocates 🥑 · formerly @algolia and @keen_io · Ruby · Rails · JAMstack · he/him\\",\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:13:59.169Z\\",\\"deleted_at\\":null,\\"location\\":\\"Paris, France\\",\\"name\\":\\"Josh Dzielak\\",\\"pronouns\\":null,\\"reach\\":8,\\"shipping_address\\":null,\\"slug\\":\\"dzello\\",\\"source\\":\\"api\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:13:59.206Z\\",\\"merged_at\\":null,\\"url\\":\\"https://dzello.com/blog/2020/05/30/black-lives-matter/\\",\\"orbit_url\\":\\"http://localhost:3000/kayleeleuschke/members/dzello\\",\\"created\\":true,\\"id\\":\\"r9nS0B\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":4598,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"3YETv3\\",\\"type\\":\\"twitter_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"ZvWFaW\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"DrDuaneWaelchi\\",\\"updated_at\\":\\"2023-02-08T12:13:59.107Z\\",\\"created_at\\":\\"2023-02-08T12:13:59.103Z\\"}}]}") {
+type post_workspace_slug_activities_201_response @example(value: "{\\"data\\":{\\"id\\":\\"6zoslV\\",\\"type\\":\\"custom_activity\\",\\"attributes\\":{\\"action\\":\\"happened\\",\\"created_at\\":\\"2023-02-28T19:20:41.694Z\\",\\"key\\":\\"thing-123\\",\\"occurred_at\\":\\"2023-02-28T19:20:41.689Z\\",\\"updated_at\\":\\"2023-02-28T19:20:41.694Z\\",\\"type\\":\\"CustomActivity\\",\\"properties\\":{},\\"tags\\":[\\"product\\",\\"enterprise\\",\\"channel:custom\\",\\"custom_type:custom-type\\",\\"custom_title:did-a-thing\\"],\\"orbit_url\\":\\"http://localhost:3000/chassidymertz/activities/6zoslV\\",\\"weight\\":\\"0.2\\",\\"custom_description\\":\\"More info about the thing\\",\\"custom_link\\":\\"http://link.com/\\",\\"custom_link_text\\":\\"See the thing\\",\\"custom_title\\":\\"Did a thing\\",\\"custom_type\\":\\"custom-type\\",\\"custom_context\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"r9nS0B\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"DXKFEz\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Something happened\\",\\"short_name\\":\\"Custom\\",\\"key\\":\\"custom:happened\\",\\"channel\\":\\"custom\\",\\"source\\":\\"custom\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"3YETv3\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":\\"45297280\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":\\"Josh Dzielak\\",\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"r9nS0B\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"https://pbs.twimg.com/profile_images/1110162582143406080/vu7_kN8f.png\\",\\"bio\\":\\"dzello.com/blog/2020/05/3… Co-founder & CTO @OrbitModel · advocate for dev advocates 🥑 · formerly @algolia and @keen_io · Ruby · Rails · JAMstack · he/him\\",\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:41.604Z\\",\\"deleted_at\\":null,\\"location\\":\\"Paris, France\\",\\"name\\":\\"Josh Dzielak\\",\\"pronouns\\":null,\\"reach\\":8,\\"shipping_address\\":null,\\"slug\\":\\"dzello\\",\\"source\\":\\"api\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:41.627Z\\",\\"merged_at\\":null,\\"url\\":\\"https://dzello.com/blog/2020/05/30/black-lives-matter/\\",\\"orbit_url\\":\\"http://localhost:3000/chassidymertz/members/dzello\\",\\"created\\":true,\\"id\\":\\"r9nS0B\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":4598,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"3YETv3\\",\\"type\\":\\"twitter_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"DXKFEz\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"LoreleiSchmelerIV\\",\\"updated_at\\":\\"2023-02-28T19:20:41.528Z\\",\\"created_at\\":\\"2023-02-28T19:20:41.523Z\\"}}]}") {
data: mutation_post_workspace_slug_activities_oneOf_0_data
included: [mutation_post_workspace_slug_activities_oneOf_0_included_items]
}
@@ -1783,7 +1795,7 @@ input identity_Input {
union post_workspace_slug_members_by_member_slug_activities_response @statusCodeTypeName(statusCode: 201, typeName: "post_workspace_slug_members_by_member_slug_activities_201_response") @statusCodeTypeName(statusCode: 422, typeName: "post_workspace_slug_members_by_member_slug_activities_422_response") = post_workspace_slug_members_by_member_slug_activities_201_response | post_workspace_slug_members_by_member_slug_activities_422_response
-type post_workspace_slug_members_by_member_slug_activities_201_response @example(value: "{\\"data\\":{\\"id\\":\\"ZngsdG\\",\\"type\\":\\"custom_activity\\",\\"attributes\\":{\\"action\\":\\"happened\\",\\"created_at\\":\\"2023-02-08T12:14:03.141Z\\",\\"key\\":\\"thing-123\\",\\"occurred_at\\":\\"2023-02-08T12:14:03.137Z\\",\\"updated_at\\":\\"2023-02-08T12:14:03.141Z\\",\\"type\\":\\"CustomActivity\\",\\"properties\\":{},\\"tags\\":[\\"product\\",\\"enterprise\\",\\"channel:custom\\",\\"custom_type:custom-type\\",\\"custom_title:did-a-thing\\"],\\"orbit_url\\":\\"http://localhost:3000/anabeltoy/activities/ZngsdG\\",\\"weight\\":\\"8.0\\",\\"custom_description\\":\\"More info about the thing\\",\\"custom_link\\":\\"http://link.com/\\",\\"custom_link_text\\":\\"See the thing\\",\\"custom_title\\":\\"Did a thing\\",\\"custom_type\\":\\"custom-type\\",\\"custom_context\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"45PSyv\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"DXKF8z\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Something happened\\",\\"short_name\\":\\"Custom\\",\\"key\\":\\"custom:happened\\",\\"channel\\":\\"custom\\",\\"source\\":\\"custom\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"45PSyv\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:03.094Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"StaceyJacobi\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"staceyjacobi\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:03.094Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/anabeltoy/members/staceyjacobi\\",\\"created\\":false,\\"id\\":\\"45PSyv\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"DXKF8z\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"AliGleason\\",\\"updated_at\\":\\"2023-02-08T12:14:03.112Z\\",\\"created_at\\":\\"2023-02-08T12:14:03.106Z\\"}}]}") {
+type post_workspace_slug_members_by_member_slug_activities_201_response @example(value: "{\\"data\\":{\\"id\\":\\"ZngsdG\\",\\"type\\":\\"custom_activity\\",\\"attributes\\":{\\"action\\":\\"happened\\",\\"created_at\\":\\"2023-02-28T19:20:46.295Z\\",\\"key\\":\\"thing-123\\",\\"occurred_at\\":\\"2023-02-28T19:20:46.292Z\\",\\"updated_at\\":\\"2023-02-28T19:20:46.295Z\\",\\"type\\":\\"CustomActivity\\",\\"properties\\":{},\\"tags\\":[\\"product\\",\\"enterprise\\",\\"channel:custom\\",\\"custom_type:custom-type\\",\\"custom_title:did-a-thing\\"],\\"orbit_url\\":\\"http://localhost:3000/candycassin/activities/ZngsdG\\",\\"weight\\":\\"8.0\\",\\"custom_description\\":\\"More info about the thing\\",\\"custom_link\\":\\"http://link.com/\\",\\"custom_link_text\\":\\"See the thing\\",\\"custom_title\\":\\"Did a thing\\",\\"custom_type\\":\\"custom-type\\",\\"custom_context\\":null},\\"relationships\\":{\\"activity_type\\":{\\"data\\":{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\"}},\\"member\\":{\\"data\\":{\\"id\\":\\"45PSyv\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"l6pF69\\",\\"type\\":\\"user\\"}}}},\\"included\\":[{\\"id\\":\\"574seD\\",\\"type\\":\\"activity_type\\",\\"attributes\\":{\\"name\\":\\"Something happened\\",\\"short_name\\":\\"Custom\\",\\"key\\":\\"custom:happened\\",\\"channel\\":\\"custom\\",\\"source\\":\\"custom\\",\\"weight\\":\\"1.0\\"}},{\\"id\\":\\"45PSyv\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:46.260Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"BurmaDibbert\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"burmadibbert\\",\\"source\\":\\"installation\\",\\"tag_list\\":[],\\"tags\\":[],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:46.260Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/candycassin/members/burmadibbert\\",\\"created\\":false,\\"id\\":\\"45PSyv\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":null,\\"github\\":null,\\"discourse\\":null,\\"email\\":null,\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[]},\\"organizations\\":{\\"data\\":[]}}},{\\"id\\":\\"l6pF69\\",\\"type\\":\\"user\\",\\"attributes\\":{\\"name\\":\\"KennyMacGyver\\",\\"updated_at\\":\\"2023-02-28T19:20:46.275Z\\",\\"created_at\\":\\"2023-02-28T19:20:46.270Z\\"}}]}") {
data: mutation_post_workspace_slug_members_by_member_slug_activities_oneOf_0_data
included: [mutation_post_workspace_slug_members_by_member_slug_activities_oneOf_0_included_items]
}
@@ -1958,7 +1970,7 @@ type mutation_delete_workspace_slug_members_by_member_slug_identities_oneOf_1_er
identity: [String]
}
-type post_workspace_slug_members_by_member_slug_notes_201_response @example(value: "{\\"data\\":{\\"id\\":\\"qR4fVo\\",\\"type\\":\\"note\\",\\"attributes\\":{\\"id\\":\\"qR4fVo\\",\\"created_at\\":\\"2023-02-08T12:14:05.984Z\\",\\"body\\":\\"heyo\\",\\"updated_at\\":\\"2023-02-08T12:14:05.984Z\\"},\\"relationships\\":{\\"member\\":{\\"data\\":{\\"id\\":\\"jDdSYG\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"lyoFLY\\",\\"type\\":\\"user\\"}}}}}") {
+type post_workspace_slug_members_by_member_slug_notes_201_response @example(value: "{\\"data\\":{\\"id\\":\\"qR4fVo\\",\\"type\\":\\"note\\",\\"attributes\\":{\\"id\\":\\"qR4fVo\\",\\"created_at\\":\\"2023-02-28T19:20:48.856Z\\",\\"body\\":\\"heyo\\",\\"updated_at\\":\\"2023-02-28T19:20:48.856Z\\"},\\"relationships\\":{\\"member\\":{\\"data\\":{\\"id\\":\\"jDdSYG\\",\\"type\\":\\"member\\"}},\\"user\\":{\\"data\\":{\\"id\\":\\"ZgeFNz\\",\\"type\\":\\"user\\"}}}}}") {
data: mutation_post_workspace_slug_members_by_member_slug_notes_data
}
@@ -2005,7 +2017,7 @@ input note_Input {
union post_workspace_slug_members_response @statusCodeTypeName(statusCode: 200, typeName: "post_workspace_slug_members_200_response") @statusCodeTypeName(statusCode: 201, typeName: "post_workspace_slug_members_201_response") @statusCodeTypeName(statusCode: 422, typeName: "post_workspace_slug_members_422_response") = post_workspace_slug_members_200_response | post_workspace_slug_members_201_response | post_workspace_slug_members_422_response
-type post_workspace_slug_members_200_response @example(value: "{\\"data\\":{\\"id\\":\\"4ndS8E\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":\\"Orbit\\",\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:14.691Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"RobbinBednarSr\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"robbinbednarsr\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:14.768Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/alvertaemard/members/robbinbednarsr\\",\\"created\\":false,\\"id\\":\\"4ndS8E\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":\\"dzello@orbit.love\\",\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"5ENTeK\\",\\"type\\":\\"github_identity\\"},{\\"id\\":\\"nZRTEp\\",\\"type\\":\\"twitter_identity\\"},{\\"id\\":\\"nqaT7d\\",\\"type\\":\\"email_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"ax8FMa\\",\\"type\\":\\"organization\\"}]}}},\\"included\\":[{\\"id\\":\\"5ENTeK\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"uid-72\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}},{\\"id\\":\\"nZRTEp\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":null,\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"nqaT7d\\",\\"type\\":\\"email_identity\\",\\"attributes\\":{\\"uid\\":\\"dzello@orbit.love\\",\\"email\\":\\"dzello@orbit.love\\",\\"username\\":null,\\"name\\":\\"dzello\\",\\"source\\":\\"email\\",\\"source_host\\":\\"email.host\\"}}]}") {
+type post_workspace_slug_members_200_response @example(value: "{\\"data\\":{\\"id\\":\\"4ndS8E\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"http://github.com/avatar.png\\",\\"bio\\":null,\\"birthday\\":null,\\"company\\":null,\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:58.483Z\\",\\"deleted_at\\":null,\\"location\\":null,\\"name\\":\\"KaterineRuecker\\",\\"pronouns\\":null,\\"reach\\":0,\\"shipping_address\\":null,\\"slug\\":\\"katerineruecker\\",\\"source\\":\\"installation\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:58.561Z\\",\\"merged_at\\":null,\\"url\\":null,\\"orbit_url\\":\\"http://localhost:3000/missmarvisblanda/members/katerineruecker\\",\\"created\\":false,\\"id\\":\\"4ndS8E\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":\\"dzello@orbit.love\\",\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":null,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"5ENTeK\\",\\"type\\":\\"github_identity\\"},{\\"id\\":\\"nZRTEp\\",\\"type\\":\\"twitter_identity\\"},{\\"id\\":\\"nqaT7d\\",\\"type\\":\\"email_identity\\"}]},\\"organizations\\":{\\"data\\":[]}}},\\"included\\":[{\\"id\\":\\"5ENTeK\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"uid-72\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}},{\\"id\\":\\"nZRTEp\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":null,\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"nqaT7d\\",\\"type\\":\\"email_identity\\",\\"attributes\\":{\\"uid\\":\\"dzello@orbit.love\\",\\"email\\":\\"dzello@orbit.love\\",\\"username\\":null,\\"name\\":\\"dzello\\",\\"source\\":\\"email\\",\\"source_host\\":\\"email.host\\"}}]}") {
data: mutation_post_workspace_slug_members_oneOf_0_data
included: [mutation_post_workspace_slug_members_oneOf_0_included_items]
}
@@ -2021,7 +2033,7 @@ type mutation_post_workspace_slug_members_oneOf_0_data_attributes {
avatar_url: URL
bio: Void
birthday: Void
- company: String
+ company: Void
title: Void
created_at: DateTime
deleted_at: Void
@@ -2076,12 +2088,7 @@ type mutation_post_workspace_slug_members_oneOf_0_data_relationships_identities_
}
type mutation_post_workspace_slug_members_oneOf_0_data_relationships_organizations {
- data: [mutation_post_workspace_slug_members_oneOf_0_data_relationships_organizations_data_items]
-}
-
-type mutation_post_workspace_slug_members_oneOf_0_data_relationships_organizations_data_items {
- id: String
- type: String
+ data: [JSON]
}
type mutation_post_workspace_slug_members_oneOf_0_included_items {
@@ -2099,7 +2106,7 @@ type mutation_post_workspace_slug_members_oneOf_0_included_items_attributes {
source_host: String
}
-type post_workspace_slug_members_201_response @example(value: "{\\"data\\":{\\"id\\":\\"40mSvV\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"https://avatars2.githubusercontent.com/u/174777?u=79e423dd07c19122115f52a1c97727ca193e6253&v=4\\",\\"bio\\":\\"Co-founder & CTO @orbit-love · Developer Advocate · formerly @algolia and @keen\\",\\"birthday\\":null,\\"company\\":\\"Orbit Love\\",\\"title\\":null,\\"created_at\\":\\"2023-02-08T12:14:14.362Z\\",\\"deleted_at\\":null,\\"location\\":\\"Paris\\",\\"name\\":\\"Josh Dzielak\\",\\"pronouns\\":null,\\"reach\\":8,\\"shipping_address\\":null,\\"slug\\":\\"dzello\\",\\"source\\":\\"api\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-08T12:14:14.474Z\\",\\"merged_at\\":null,\\"url\\":\\"https://dzello.com/\\",\\"orbit_url\\":\\"http://localhost:3000/msnewtonadams/members/dzello\\",\\"created\\":true,\\"id\\":\\"40mSvV\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":\\"josh@orbit.love\\",\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":171,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"1ADTwV\\",\\"type\\":\\"github_identity\\"},{\\"id\\":\\"3RgTbZ\\",\\"type\\":\\"twitter_identity\\"},{\\"id\\":\\"3YETyv\\",\\"type\\":\\"email_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"n9WF2V\\",\\"type\\":\\"organization\\"}]}}},\\"included\\":[{\\"id\\":\\"1ADTwV\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"174777\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":\\"Josh Dzielak\\",\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}},{\\"id\\":\\"3RgTbZ\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":null,\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"3YETyv\\",\\"type\\":\\"email_identity\\",\\"attributes\\":{\\"uid\\":\\"josh@orbit.love\\",\\"email\\":\\"josh@orbit.love\\",\\"username\\":null,\\"name\\":\\"josh\\",\\"source\\":\\"email\\",\\"source_host\\":\\"email.host\\"}}]}") {
+type post_workspace_slug_members_201_response @example(value: "{\\"data\\":{\\"id\\":\\"40mSvV\\",\\"type\\":\\"member\\",\\"attributes\\":{\\"avatar_url\\":\\"https://avatars2.githubusercontent.com/u/174777?u=79e423dd07c19122115f52a1c97727ca193e6253&v=4\\",\\"bio\\":\\"Co-founder & CTO @orbit-love · Developer Advocate · formerly @algolia and @keen\\",\\"birthday\\":null,\\"company\\":\\"@orbit-love\\",\\"title\\":null,\\"created_at\\":\\"2023-02-28T19:20:58.117Z\\",\\"deleted_at\\":null,\\"location\\":\\"Paris\\",\\"name\\":\\"Josh Dzielak\\",\\"pronouns\\":null,\\"reach\\":8,\\"shipping_address\\":null,\\"slug\\":\\"dzello\\",\\"source\\":\\"api\\",\\"tag_list\\":[\\"one\\",\\"two\\"],\\"tags\\":[\\"one\\",\\"two\\"],\\"teammate\\":false,\\"tshirt\\":null,\\"updated_at\\":\\"2023-02-28T19:20:58.183Z\\",\\"merged_at\\":null,\\"url\\":\\"https://dzello.com/\\",\\"orbit_url\\":\\"http://localhost:3000/waylonhickle/members/dzello\\",\\"created\\":true,\\"id\\":\\"40mSvV\\",\\"orbit_level\\":null,\\"love\\":null,\\"first_activity_occurred_at\\":null,\\"last_activity_occurred_at\\":null,\\"activities_count\\":0,\\"activities_score\\":0,\\"twitter\\":\\"dzello\\",\\"github\\":\\"dzello\\",\\"discourse\\":null,\\"email\\":\\"josh@orbit.love\\",\\"devto\\":null,\\"linkedin\\":null,\\"discord\\":null,\\"github_followers\\":171,\\"twitter_followers\\":null,\\"topics\\":null,\\"languages\\":null},\\"relationships\\":{\\"identities\\":{\\"data\\":[{\\"id\\":\\"1ADTwV\\",\\"type\\":\\"github_identity\\"},{\\"id\\":\\"3RgTbZ\\",\\"type\\":\\"twitter_identity\\"},{\\"id\\":\\"3YETyv\\",\\"type\\":\\"email_identity\\"}]},\\"organizations\\":{\\"data\\":[{\\"id\\":\\"n9WF2V\\",\\"type\\":\\"organization\\"}]}}},\\"included\\":[{\\"id\\":\\"1ADTwV\\",\\"type\\":\\"github_identity\\",\\"attributes\\":{\\"uid\\":\\"174777\\",\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":\\"Josh Dzielak\\",\\"source\\":\\"github\\",\\"source_host\\":\\"github.com\\"}},{\\"id\\":\\"3RgTbZ\\",\\"type\\":\\"twitter_identity\\",\\"attributes\\":{\\"uid\\":null,\\"email\\":null,\\"username\\":\\"dzello\\",\\"name\\":null,\\"source\\":\\"twitter\\",\\"source_host\\":\\"twitter.com\\"}},{\\"id\\":\\"3YETyv\\",\\"type\\":\\"email_identity\\",\\"attributes\\":{\\"uid\\":\\"josh@orbit.love\\",\\"email\\":\\"josh@orbit.love\\",\\"username\\":null,\\"name\\":\\"josh\\",\\"source\\":\\"email\\",\\"source_host\\":\\"email.host\\"}}]}") {
data: mutation_post_workspace_slug_members_oneOf_1_data
included: [mutation_post_workspace_slug_members_oneOf_1_included_items]
}
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 5ae3bc11180aa..612d275abfcd2 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -37,16 +37,15 @@
"@graphql-mesh/types": "0.91.6",
"@graphql-tools/delegate": "9.0.28",
"@graphql-tools/utils": "9.2.1",
+ "dset": "3.1.2",
"js-yaml": "4.1.0",
"lodash.get": "4.4.2",
- "lodash.set": "4.3.2",
"lodash.topath": "4.5.2",
"tiny-lru": "8.0.2",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/js-yaml": "4.0.5",
- "@types/lodash.set": "4.3.7",
"@types/lodash.topath": "4.5.7",
"@types/object-hash": "3.0.2"
},
diff --git a/packages/utils/src/resolve-additional-resolvers.ts b/packages/utils/src/resolve-additional-resolvers.ts
index a4bceb4d33ef3..189f721b1c71a 100644
--- a/packages/utils/src/resolve-additional-resolvers.ts
+++ b/packages/utils/src/resolve-additional-resolvers.ts
@@ -1,25 +1,25 @@
-import { YamlConfig, MeshPubSub, ImportFn } from '@graphql-mesh/types';
-import { IResolvers, parseSelectionSet } from '@graphql-tools/utils';
+import { dset } from 'dset';
import {
+ getNamedType,
+ GraphQLNamedType,
+ GraphQLObjectType,
GraphQLResolveInfo,
- SelectionSetNode,
- Kind,
GraphQLSchema,
- GraphQLObjectType,
- getNamedType,
- isAbstractType,
GraphQLType,
+ isAbstractType,
isInterfaceType,
isObjectType,
- GraphQLNamedType,
+ Kind,
+ SelectionSetNode,
} from 'graphql';
-import { withFilter } from './with-filter.js';
import lodashGet from 'lodash.get';
-import lodashSet from 'lodash.set';
import toPath from 'lodash.topath';
+import { process } from '@graphql-mesh/cross-helpers';
import { stringInterpolator } from '@graphql-mesh/string-interpolation';
+import { ImportFn, MeshPubSub, YamlConfig } from '@graphql-mesh/types';
+import { IResolvers, parseSelectionSet } from '@graphql-tools/utils';
import { loadFromModuleExportExpression } from './load-from-module-export-expression.js';
-import { process } from '@graphql-mesh/cross-helpers';
+import { withFilter } from './with-filter.js';
function getTypeByPath(type: GraphQLType, path: string[]): GraphQLNamedType {
if ('ofType' in type) {
@@ -202,7 +202,7 @@ export function resolveAdditionalResolversWithoutImport(
const resolverData = { root, args, context, info, env: process.env };
const targetArgs: any = {};
for (const argPath in additionalResolver.additionalArgs || {}) {
- lodashSet(
+ dset(
targetArgs,
argPath,
stringInterpolator.parse(additionalResolver.additionalArgs[argPath], resolverData),
@@ -215,7 +215,7 @@ export function resolveAdditionalResolversWithoutImport(
info,
argsFromKeys: (keys: string[]) => {
const args: any = {};
- lodashSet(args, additionalResolver.keysArg, keys);
+ dset(args, additionalResolver.keysArg, keys);
Object.assign(args, targetArgs);
return args;
},
@@ -265,7 +265,7 @@ export function resolveAdditionalResolversWithoutImport(
const resolverData = { root, args, context, info, env: process.env };
const targetArgs: any = {};
for (const argPath in additionalResolver.sourceArgs) {
- lodashSet(
+ dset(
targetArgs,
argPath,
stringInterpolator.parse(
@@ -370,7 +370,7 @@ export function resolveAdditionalResolvers(
const resolverData = { root, args, context, info, env: process.env };
const targetArgs: any = {};
for (const argPath in additionalResolver.additionalArgs || {}) {
- lodashSet(
+ dset(
targetArgs,
argPath,
stringInterpolator.parse(
@@ -386,7 +386,7 @@ export function resolveAdditionalResolvers(
info,
argsFromKeys: (keys: string[]) => {
const args: any = {};
- lodashSet(args, additionalResolver.keysArg, keys);
+ dset(args, additionalResolver.keysArg, keys);
Object.assign(args, targetArgs);
return args;
},
@@ -436,7 +436,7 @@ export function resolveAdditionalResolvers(
const resolverData = { root, args, context, info, env: process.env };
const targetArgs: any = {};
for (const argPath in additionalResolver.sourceArgs) {
- lodashSet(
+ dset(
targetArgs,
argPath,
stringInterpolator.parse(
diff --git a/yarn.lock b/yarn.lock
index 02311116ddc3f..62805cb06c1c9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6246,7 +6246,7 @@
dependencies:
"@types/lodash" "*"
-"@types/lodash.set@4.3.7", "@types/lodash.set@^4.3.6":
+"@types/lodash.set@^4.3.6":
version "4.3.7"
resolved "https://registry.yarnpkg.com/@types/lodash.set/-/lodash.set-4.3.7.tgz#784fccea3fbef4d0949d1897a780f592da700942"
integrity sha512-bS5Wkg/nrT82YUfkNYPSccFrNZRL+irl7Yt4iM6OTSQ0VZJED2oUIVm15NkNtUAQ8SRhCe+axqERUV6MJgkeEg==
@@ -10065,7 +10065,7 @@ dottie@^2.0.0:
resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz#cc91c0726ce3a054ebf11c55fbc92a7f266dd154"
integrity sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==
-dset@^3.1.1, dset@^3.1.2:
+dset@3.1.2, dset@^3.1.1, dset@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.2.tgz#89c436ca6450398396dc6538ea00abc0c54cd45a"
integrity sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==