This repository was archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathFieldGraphType.cs
49 lines (48 loc) · 1.94 KB
/
FieldGraphType.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
//******************************************************************************
// <copyright file="license.md" company="RawCMS project (https://github.com/arduosoft/RawCMS)">
// Copyright (c) 2019 RawCMS project (https://github.com/arduosoft/RawCMS)
// RawCMS project is released under GPL3 terms, see LICENSE file on repository root at https://github.com/arduosoft/RawCMS .
// </copyright>
// <author>Daniele Fontani, Emanuele Bucarelli, Francesco Mina'</author>
// <autogenerated>true</autogenerated>
//******************************************************************************
namespace RawCMS.Library.Schema
{
public enum FieldGraphType
{
Int,
Long,
BigInt,
Float,
Short,
Decimal,
String,
Boolean,
Id,
Date,
DateTimeOffset,
TimeSpanSeconds,
Relation,
Byte,
SByte
}
// Allowed GraphType
// [typeof(int)] = typeof(IntGraphType),
// [typeof(long)] = typeof(LongGraphType),
// [typeof(BigInteger)] = typeof(BigIntGraphType),
// [typeof(double)] = typeof(FloatGraphType),
// [typeof(float)] = typeof(FloatGraphType),
// [typeof(decimal)] = typeof(DecimalGraphType),
// [typeof(string)] = typeof(StringGraphType),
// [typeof(bool)] = typeof(BooleanGraphType),
// [typeof(DateTime)] = typeof(DateGraphType),
// [typeof(DateTimeOffset)] = typeof(DateTimeOffsetGraphType),
// [typeof(TimeSpan)] = typeof(TimeSpanSecondsGraphType),
// [typeof(Guid)] = typeof(IdGraphType),
// [typeof(short)] = typeof(ShortGraphType),
// [typeof(ushort)] = typeof(UShortGraphType),
// [typeof(ulong)] = typeof(ULongGraphType),
// [typeof(uint)] = typeof(UIntGraphType),
// [typeof(byte)] = typeof(ByteGraphType),
// [typeof(sbyte)] = typeof(SByteGraphType),
}