Allows you to perform aggregations operations on a GuildFixUrl.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Select which aggregations you would like to apply and on what fields.
Count the number of GuildFixUrls.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Optionalargs: Subset<T, GuildFixUrlCountArgs<DefaultArgs>>Arguments to filter GuildFixUrls to count.
Create a GuildFixUrl.
Arguments to create a GuildFixUrl.
Create many GuildFixUrls.
Optionalargs: SelectSubset<T, GuildFixUrlCreateManyArgs<ExtArgs>>Arguments to create many GuildFixUrls.
Create many GuildFixUrls and returns the data saved in the database.
Optionalargs: SelectSubset<T, GuildFixUrlCreateManyAndReturnArgs<ExtArgs>>Arguments to create many GuildFixUrls.
// Create many GuildFixUrls
const guildFixUrl = await prisma.guildFixUrl.createManyAndReturn({
data: [
// ... provide data here
]
})
// Create many GuildFixUrls and only return the `dbId`
const guildFixUrlWithDbIdOnly = await prisma.guildFixUrl.createManyAndReturn({
select: { dbId: true },
data: [
// ... provide data here
]
})
Note, that providing `undefined` is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Delete a GuildFixUrl.
Arguments to delete one GuildFixUrl.
Delete zero or more GuildFixUrls.
Optionalargs: SelectSubset<T, GuildFixUrlDeleteManyArgs<ExtArgs>>Arguments to filter GuildFixUrls to delete.
Find the first GuildFixUrl that matches the filter.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Optionalargs: SelectSubset<T, GuildFixUrlFindFirstArgs<ExtArgs>>Arguments to find a GuildFixUrl
Find the first GuildFixUrl that matches the filter or
throw PrismaKnownClientError with P2025 code if no matches were found.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Optionalargs: SelectSubset<T, GuildFixUrlFindFirstOrThrowArgs<ExtArgs>>Arguments to find a GuildFixUrl
Find zero or more GuildFixUrls that matches the filter.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Optionalargs: SelectSubset<T, GuildFixUrlFindManyArgs<ExtArgs>>Arguments to filter and select certain fields only.
// Get all GuildFixUrls
const guildFixUrls = await prisma.guildFixUrl.findMany()
// Get first 10 GuildFixUrls
const guildFixUrls = await prisma.guildFixUrl.findMany({ take: 10 })
// Only select the `dbId`
const guildFixUrlWithDbIdOnly = await prisma.guildFixUrl.findMany({ select: { dbId: true } })
Find zero or one GuildFixUrl that matches the filter.
Arguments to find a GuildFixUrl
Find one GuildFixUrl that matches the filter or throw an error with error.code='P2025'
if no matches were found.
Arguments to find a GuildFixUrl
Group by GuildFixUrl.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Group by arguments.
Update one GuildFixUrl.
Arguments to update one GuildFixUrl.
Update zero or more GuildFixUrls.
Note, that providing undefined is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Arguments to update one or more rows.
Update zero or more GuildFixUrls and returns the data updated in the database.
Arguments to update many GuildFixUrls.
// Update many GuildFixUrls
const guildFixUrl = await prisma.guildFixUrl.updateManyAndReturn({
where: {
// ... provide filter here
},
data: [
// ... provide data here
]
})
// Update zero or more GuildFixUrls and only return the `dbId`
const guildFixUrlWithDbIdOnly = await prisma.guildFixUrl.updateManyAndReturn({
select: { dbId: true },
where: {
// ... provide filter here
},
data: [
// ... provide data here
]
})
Note, that providing `undefined` is treated as the value not being there.
Read more here: https://pris.ly/d/null-undefined
Create or update one GuildFixUrl.
Arguments to update or create a GuildFixUrl.
Fields of the GuildFixUrl model