Skip to content

Commit

Permalink
backport
Browse files Browse the repository at this point in the history
  • Loading branch information
akeller committed Aug 28, 2024
1 parent 6088194 commit f00baa1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions docs/components/connectors/use-connectors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ In that case, you could declare `Result Expression` as follows:

```
= {
berlinWeather: response.current_weather.temperature,
berlinWindSpeed: response.current_weather.windspeed,
berlinWeatherInFahrenheit: response.current_weather.temperature * 1.8 + 32
berlinWeather: response.body.current_weather.temperature,
berlinWindSpeed: response.body.current_weather.windspeed,
berlinWeatherInFahrenheit: response.body.current_weather.temperature * 1.8 + 32
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ In that case, you could declare `Result Expression` as follows:

```
= {
berlinWeather: response.current_weather.temperature,
berlinWindSpeed: response.current_weather.windspeed,
berlinWeatherInFahrenheit: response.current_weather.temperature * 1.8 + 32
berlinWeather: response.body.current_weather.temperature,
berlinWindSpeed: response.body.current_weather.windspeed,
berlinWeatherInFahrenheit: response.body.current_weather.temperature * 1.8 + 32
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ In that case, you could declare `Result Expression` as follows:

```
= {
berlinWeather: response.current_weather.temperature,
berlinWindSpeed: response.current_weather.windspeed,
berlinWeatherInFahrenheit: response.current_weather.temperature * 1.8 + 32
berlinWeather: response.body.current_weather.temperature,
berlinWindSpeed: response.body.current_weather.windspeed,
berlinWeatherInFahrenheit: response.body.current_weather.temperature * 1.8 + 32
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ In that case, you could declare `Result Expression` as follows:

```
= {
berlinWeather: response.current_weather.temperature,
berlinWindSpeed: response.current_weather.windspeed,
berlinWeatherInFahrenheit: response.current_weather.temperature * 1.8 + 32
berlinWeather: response.body.current_weather.temperature,
berlinWindSpeed: response.body.current_weather.windspeed,
berlinWeatherInFahrenheit: response.body.current_weather.temperature * 1.8 + 32
}
```

Expand Down

0 comments on commit f00baa1

Please sign in to comment.