We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fee21c commit 88a6953Copy full SHA for 88a6953
1 file changed
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