@@ -874,6 +874,9 @@ def find_one(self, entity_type, filters, fields=None, order=None, filter_operato
874874 :ref:`additional_filter_presets`
875875 :returns: Dictionary representing a single matching entity with the requested fields,
876876 and the defaults ``"id"`` and ``"type"`` which are always included.
877+
878+ .. seealso:: :ref:`entity-fields`
879+
877880 :rtype: dict
878881 """
879882
@@ -910,7 +913,7 @@ def find(self, entity_type, filters, fields=None, order=None, filter_operator=No
910913 {'code': 'Wet Gopher', 'id': 149, 'sg_asset_type': 'Character', 'type': 'Asset'}]
911914
912915 You can drill through single entity links to filter on fields or display linked fields.
913- This is often called "deep linking" or using "dot syntax ".
916+ This is often called "deep linking" or using "dot notation ".
914917
915918 .. seealso:: :ref:`filter_syntax`
916919
@@ -933,10 +936,13 @@ def find(self, entity_type, filters, fields=None, order=None, filter_operator=No
933936 :param str entity_type: Shotgun entity type to find.
934937 :param list filters: list of filters to apply to the query.
935938
936- .. seealso:: :ref:`filter_syntax`
939+ .. seealso:: :ref:`filter_syntax`, :ref:`combining-related-queries`
937940
938941 :param list fields: Optional list of fields to include in each entity record returned.
939942 Defaults to ``["id"]``.
943+
944+ .. seealso:: :ref:`combining-related-queries`
945+
940946 :param list order: Optional list of dictionaries defining how to order the results of the
941947 query. Each dictionary contains the ``field_name`` to order by and the ``direction``
942948 to sort::
@@ -970,6 +976,9 @@ def find(self, entity_type, filters, fields=None, order=None, filter_operator=No
970976 :ref:`additional_filter_presets`
971977 :returns: list of dictionaries representing each entity with the requested fields, and the
972978 defaults ``"id"`` and ``"type"`` which are always included.
979+
980+ .. seealso:: :ref:`entity-fields`
981+
973982 :rtype: list
974983 """
975984
@@ -1332,10 +1341,16 @@ def create(self, entity_type, data, return_fields=None):
13321341 to the server automatically.
13331342 :param list return_fields: Optional list of additional field values to return from the new
13341343 entity. Defaults to ``id`` field.
1344+
1345+ .. seealso:: :ref:`combining-related-queries`
1346+
13351347 :returns: Shotgun entity dictionary containing the field/value pairs of all of the fields
13361348 set from the ``data`` parameter as well as the defaults ``type`` and ``id``. If any
13371349 additional fields were provided using the ``return_fields`` parameter, these would be
13381350 included as well.
1351+
1352+ .. seealso:: :ref:`entity-fields`
1353+
13391354 :rtype: dict
13401355 """
13411356
0 commit comments