fix: return newly created filter (#3836)

This commit is contained in:
Maista 2023-06-22 02:32:46 +02:00 committed by GitHub
parent 0087bc941c
commit bcf9019ca3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,6 +42,7 @@ func (r *mutationResolver) SaveFilter(ctx context.Context, input SaveFilterInput
}); err != nil {
return nil, err
}
ret = &newFilter
return ret, err
}