Getting error 'is_like' can't be used as a setter because it's final. How can we set it to a non-final in graphQL auto-generated response?
I want to change the value of is_like on user action, but the auto-generated graphQL response throws the above error. Below is the query used in my project
Getting error 'is_like' can't be used as a setter because it's final. How can we set it to a non-final in graphQL auto-generated response?
I want to change the value of is_like on user action, but the auto-generated graphQL response throws the above error. Below is the query used in my project
query GetMatchList($offset: Int!, $limit: Int!, ){ getMatchList( input: { offset: $offset limit: $limit } ) { meta { status message message_code status_code } data { uuid match_title is_like } pagination { offset limit total_count } } }
Thanks