-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuerySnippets.cs
89 lines (85 loc) · 3.07 KB
/
QuerySnippets.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using Fauna;
namespace DotNetSampleApp.Controllers;
/// <summary>
/// A class with query snippets.
/// </summary>
public static class QuerySnippets
{
/// <summary>
/// A Query snippet for customer response projection.
/// </summary>
/// <returns></returns>
public static Query CustomerResponse()
{
return Query.FQL($$"""
// Use projection to return only the necessary fields.
customer {
id,
name,
email,
address
}
""");
}
/// <summary>
/// A Query snippet for order response projection.
/// </summary>
/// <returns></returns>
public static Query OrderResponse()
{
return Query.FQL($$"""
{
id: order.id,
payment: order.payment,
createdAt: order.createdAt,
status: order.status,
total: order.total,
items: order.items.toArray().map((item) => {
product: {
id: item.product.id,
name: item.product.name,
price: item.product.price,
description: item.product.description,
stock: item.product.stock,
category: {
id: item.product.category.id,
name: item.product.category.name,
description: item.product.category.description
}
},
quantity: item.quantity
}),
customer: {
id: order.customer.id,
name: order.customer.name,
email: order.customer.email,
address: order.customer.address
}
}
""");
}
/// <summary>
/// A Query snippet for product response projection.
/// </summary>
/// <returns></returns>
public static Query ProductResponse()
{
return Query.FQL($$"""
// Use projection to return only the necessary fields.
let product: Any = product
let category: Any = product.category
product {
id: product.id,
name: product.name,
price: product.price,
description: product.description,
stock: product.stock,
category: {
id: category.id,
name: category.name,
description: category.description
},
}
""");
}
}