/// <summary> /// Adds sorting support for Neo4j. /// </summary> /// <param name="builder"> /// The <see cref="ISchemaBuilder"/>. /// </param> /// <param name="name"> /// The sorting convention name. /// </param> /// <returns> /// Returns the <see cref="ISchemaBuilder"/>. /// </returns> public static ISchemaBuilder AddNeo4JSorting( this ISchemaBuilder builder, string?name = null) => builder.AddSorting(x => x.AddNeo4JDefaults(), name);