We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 'lead bulk delete' features uses a Rest API.
The 'Lead' feature works with a graphql mutation.
server/apps/lead/views.py
Lines 257 to 265 in bbfdef2
method: POST url: api/v1/project/<projectID>/leads/bulk-delete/ request payload: { "leads": ["72","43"] }
mutation MyMutation ($projectId: ID! $input: [ID!]) { project(id: $projectId) { leadBulk(deleteIds: $input) { errors deletedResult : BulkLead } } }
The text was updated successfully, but these errors were encountered:
susilnem
No branches or pull requests
Problem Statement
The 'lead bulk delete' features uses a Rest API.
Acceptance Criteria
The 'Lead' feature works with a graphql mutation.
Existing
server/apps/lead/views.py
Lines 257 to 265 in bbfdef2
The existing api doesnot contain any Serializer.
Rest Framework urls
Purposed
The text was updated successfully, but these errors were encountered: