How can I successfully create a draft order?

I want to create a draft order, here’s the mutation:

mutation {
draftOrderCreate(input: {
billingAddress:{
address1:“123 Fake St”,
address2:“”,
city:“Fake Town”,
company:“Fake Company”,
country:“United States”,
countryCode:US,
firstName:“Fake First Name”,
lastName:“Fake Last Name”,
phone:“555-555-5555”,
province:“California”,
provinceCode:“Ca”,
zip:“91403”
},
customAttributes:[{
key:“”,
value:“”
}],
email:"info@addisonapplications.com",
lineItems:[{
grams:9,
originalUnitPrice:“2”,
quantity:2,
requiresShipping:false,
sku:“”,
taxable:false,
title:“7 Shakra Bracelet”
},{
grams:9,
originalUnitPrice:“42”,
quantity:1,
requiresShipping:false,
sku:“”,
taxable:false,
title:“7 Shakra Bracelet”
}],
note:“Test Note”,
shippingAddress:{
address1:“123 Fake St”,
address2:“”,
city:“Fake City”,
company:“Fake Company”,
country:“United States”,
countryCode:US,
firstName:“Fake First Name”,
lastName:“Fake Last Name”
,phone:“555-555-5555”,
province:“California”,
provinceCode:“Ca”,
zip:“91403”
},
shippingLine:{
price:“5”,
shippingRateHandle:“4”,
title:“deeeffef”,
},
tags:“Test Tag”,
taxExempt:true,
useCustomerDefaultAddress:true
}){
draftOrder {
id
}
userErrors {
field
message
}
}
}

It gives back this message :

{
errors: [
{
message: ‘Internal error. Looks like something went wrong on our end.\n’ +
‘Request ID: 33ac1085-8d2e-4f65-8b90-cf23ee6048f7 (include this in support requests).’,
extensions: [Object]
}
]
}