Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 71 additions & 4 deletions docs/reference/graphql/graphql_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -5971,7 +5971,7 @@ Key of a property.
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.values">values</strong></td>
<td valign="top">[<a href="#string">String</a>!]!</td>
<td valign="top">[<a href="#propertyoutput">PropertyOutput</a>!]!</td>
<td>

Return the values of the properties.
Expand All @@ -5980,7 +5980,7 @@ Return the values of the properties.
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.at">at</strong></td>
<td valign="top"><a href="#string">String</a></td>
<td valign="top"><a href="#propertyoutput">PropertyOutput</a></td>
<td></td>
</tr>
<tr>
Expand All @@ -5990,12 +5990,12 @@ Return the values of the properties.
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.latest">latest</strong></td>
<td valign="top"><a href="#string">String</a></td>
<td valign="top"><a href="#propertyoutput">PropertyOutput</a></td>
<td></td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.unique">unique</strong></td>
<td valign="top">[<a href="#string">String</a>!]!</td>
<td valign="top">[<a href="#propertyoutput">PropertyOutput</a>!]!</td>
<td></td>
</tr>
<tr>
Expand All @@ -6008,6 +6008,73 @@ Return the values of the properties.
<td valign="top"><a href="#boolean">Boolean</a>!</td>
<td></td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.sum">sum</strong></td>
<td valign="top"><a href="#propertyoutput">PropertyOutput</a></td>
<td>

Sum of all updates. Returns null if the dtype is not additive or the property is empty.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.mean">mean</strong></td>
<td valign="top"><a href="#propertyoutput">PropertyOutput</a></td>
<td>

Mean of all updates as an F64. Returns null if any value is non-numeric or the property is
empty.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.average">average</strong></td>
<td valign="top"><a href="#propertyoutput">PropertyOutput</a></td>
<td>

Alias for `mean`.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.min">min</strong></td>
<td valign="top"><a href="#propertytuple">PropertyTuple</a></td>
<td>

Minimum `(time, value)` pair. Returns null if the dtype is not comparable or the property is
empty.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.max">max</strong></td>
<td valign="top"><a href="#propertytuple">PropertyTuple</a></td>
<td>

Maximum `(time, value)` pair. Returns null if the dtype is not comparable or the property is
empty.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.median">median</strong></td>
<td valign="top"><a href="#propertytuple">PropertyTuple</a></td>
<td>

Median `(time, value)` pair (lower median on even-length inputs). Returns null if the dtype
is not comparable or the property is empty.

</td>
</tr>
<tr>
<td colspan="2" valign="top"><strong id="temporalproperty.count">count</strong></td>
<td valign="top"><a href="#int">Int</a>!</td>
<td>

Number of updates.

</td>
</tr>
</tbody>
</table>

Expand Down
Loading
Loading