@@ -140,7 +140,7 @@ class RaphtoryClient(object):
140140
141141 def copy_graph (self , path : str , new_path : str ) -> None :
142142 """
143- Copy graph from a path ` path` on the server to a ` new_path` on the server
143+ Copy graph from a path path on the server to a new_path on the server
144144
145145 Arguments:
146146 path (str): the path of the graph to be copied
@@ -166,7 +166,7 @@ class RaphtoryClient(object):
166166
167167 def delete_graph (self , path : str ) -> None :
168168 """
169- Delete graph from a path ` path` on the server
169+ Delete graph from a path path on the server
170170
171171 Arguments:
172172 path (str): the path of the graph to be deleted
@@ -185,7 +185,7 @@ class RaphtoryClient(object):
185185
186186 def move_graph (self , path : str , new_path : str ) -> None :
187187 """
188- Move graph from a path ` path` on the server to a ` new_path` on the server
188+ Move graph from a path path on the server to a new_path on the server
189189
190190 Arguments:
191191 path (str): the path of the graph to be moved
@@ -197,7 +197,7 @@ class RaphtoryClient(object):
197197
198198 def new_graph (self , path : str , graph_type : Literal ["EVENT" , "PERSISTENT" ]) -> None :
199199 """
200- Create a new empty Graph on the server at ` path`
200+ Create a new empty Graph on the server at path
201201
202202 Arguments:
203203 path (str): the path of the graph to be created
@@ -217,12 +217,12 @@ class RaphtoryClient(object):
217217 variables (dict[str, Any], optional): a dict of variables present on the query and their values.
218218
219219 Returns:
220- dict[str, Any]: The ` data` field from the graphQL response.
220+ dict[str, Any]: The data field from the graphQL response.
221221 """
222222
223223 def receive_graph (self , path : str ) -> Union [Graph , PersistentGraph ]:
224224 """
225- Receive graph from a path ` path` on the server
225+ Receive graph from a path path on the server
226226
227227 Note:
228228 This downloads a copy of the graph. Modifications are not persistet to the server.
@@ -236,7 +236,7 @@ class RaphtoryClient(object):
236236
237237 def remote_graph (self , path : str ) -> RemoteGraph :
238238 """
239- Get a RemoteGraph reference to a graph on the server at ` path`
239+ Get a RemoteGraph reference to a graph on the server at path
240240
241241 Arguments:
242242 path (str): the path of the graph to be created
@@ -256,20 +256,20 @@ class RaphtoryClient(object):
256256 overwrite (bool): overwrite existing graph. Defaults to False.
257257
258258 Returns:
259- dict[str, Any]: The ` data` field from the graphQL response after executing the mutation.
259+ dict[str, Any]: The data field from the graphQL response after executing the mutation.
260260 """
261261
262262 def upload_graph (self , path : str , file_path : str , overwrite : bool = False ) -> dict [str , Any ]:
263263 """
264- Upload graph file from a path ` file_path` on the client
264+ Upload graph file from a path file_path on the client
265265
266266 Arguments:
267267 path (str): the name of the graph
268268 file_path (str): the path of the graph on the client
269269 overwrite (bool): overwrite existing graph. Defaults to False.
270270
271271 Returns:
272- dict[str, Any]: The ` data` field from the graphQL response after executing the mutation.
272+ dict[str, Any]: The data field from the graphQL response after executing the mutation.
273273 """
274274
275275class RemoteGraph (object ):
@@ -569,7 +569,7 @@ class RemoteEdgeAddition(object):
569569
570570class RemoteIndexSpec (object ):
571571 """
572- Create a ` RemoteIndexSpec` specifying which node and edge properties to index.
572+ Create a RemoteIndexSpec specifying which node and edge properties to index.
573573
574574 Arguments:
575575 node_props (PropsInput): Property spec for nodes.
@@ -581,22 +581,22 @@ class RemoteIndexSpec(object):
581581
582582class PropsInput (object ):
583583 """
584- Create a ` PropsInput` by choosing to include all/some properties explicitly.
584+ Create a PropsInput by choosing to include all/some properties explicitly.
585585
586586 Arguments:
587587 all (AllPropertySpec, optional): Use a predefined spec to include all properties of a kind.
588588 some (SomePropertySpec, optional): Explicitly list the properties to include.
589589
590590 Raises:
591- ValueError: If neither ` all` and ` some` are specified.
591+ ValueError: If neither all and some are specified.
592592 """
593593
594594 def __new__ (cls , all : Optional [AllPropertySpec ] = None , some : Optional [SomePropertySpec ] = None ) -> PropsInput :
595595 """Create and return a new object. See help(type) for accurate signature."""
596596
597597class SomePropertySpec (object ):
598598 """
599- Create a ` SomePropertySpec` by explicitly listing metadata and/or temporal property names.
599+ Create a SomePropertySpec by explicitly listing metadata and/or temporal property names.
600600
601601 Arguments:
602602 metadata (list[str]): Metadata property names. Defaults to [].
@@ -609,7 +609,7 @@ class SomePropertySpec(object):
609609class AllPropertySpec (object ):
610610 """
611611 Specifies that **all** properties should be included when creating an index.
612- Use one of the predefined variants: ` ALL`, ` ALL_METADATA` , or ` ALL_TEMPORAL` .
612+ Use one of the predefined variants: ALL , ALL_METADATA , or ALL_TEMPORAL .
613613 """
614614
615615 def __eq__ (self , value ):
0 commit comments