We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4831082 + 88a6953 commit d073516Copy full SHA for d073516
src/Linq2GraphQL.Client/Attributes/GraphQLMemberAttribute.cs
@@ -3,7 +3,12 @@
3
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Method)]
4
public class GraphQLMemberAttribute : Attribute
5
{
6
- public GraphQLMemberAttribute(string graphQLName, bool interfaceProperty = false)
+ public GraphQLMemberAttribute(string graphQLName)
7
+ {
8
+ GraphQLName = graphQLName;
9
+ }
10
+
11
+ public GraphQLMemberAttribute(string graphQLName, bool interfaceProperty)
12
13
GraphQLName = graphQLName;
14
InterfaceProperty = interfaceProperty;
0 commit comments