feat: add Platform GraphQL client service for lead lookup and CRUD

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-17 09:04:00 +05:30
parent a3172140b0
commit 5b35c65e6e
5 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { PlatformGraphqlService } from './platform-graphql.service';
@Module({
providers: [PlatformGraphqlService],
exports: [PlatformGraphqlService],
})
export class PlatformModule {}